/* ==========================================================
   SRINATH SATISH — CINEMATIC COMPOSER PORTFOLIO
   Style: Dark Orchestral · Cormorant + DM Sans
   ========================================================== */

/* ── RESET & ROOT ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Palette */
  --bg:          #080808;
  --surface:     #101010;
  --surface-2:   #161616;
  --border:      rgba(255,255,255,0.07);
  --text:        #e8e4dc;
  --text-muted:  rgba(232,228,220,0.45);
  --text-dim:    rgba(232,228,220,0.25);
  --gold:        #c9a96e;
  --gold-dim:    rgba(201,169,110,0.15);
  --gold-glow:   rgba(201,169,110,0.4);
  /* Replace this file name with your own horizontal hero image. */
  --hero-bg-image: url("websitebg.png");

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;

  /* Spacing */
  --section-pad: 120px;
  --container:   1180px;
  --radius:      4px;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Scrollbar */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold); }

/* Selection */
::selection { background: var(--gold); color: var(--bg); }

/* ── TYPOGRAPHY ───────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

a { text-decoration: none; color: inherit; }

/* ── UTILITY ──────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

.italic { font-style: italic; }

/* ── NAVIGATION ───────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), backdrop-filter 0.4s;
}

#navbar.scrolled {
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 16px 48px;
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  font-style: italic;
}

.nav-logo .dot {
  color: var(--text-muted);
  margin: 0 0.04em;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s;
}

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

.nav-links .nav-cta {
  color: var(--gold);
  border: 1px solid rgba(201,169,110,0.4);
  padding: 8px 20px;
  border-radius: var(--radius);
  transition: background 0.3s, color 0.3s;
}
.nav-links .nav-cta:hover {
  background: var(--gold);
  color: var(--bg);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(8,8,8,0.98);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu ul { list-style: none; text-align: center; }
.mobile-menu ul li { margin: 24px 0; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 3rem;
  font-style: italic;
  color: var(--text);
  opacity: 0;
  transform: translateY(20px);
  display: block;
  transition: color 0.3s;
}
.mobile-menu.open a {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), color 0.3s;
}
.mobile-menu.open li:nth-child(1) a { transition-delay: 0.05s; }
.mobile-menu.open li:nth-child(2) a { transition-delay: 0.1s; }
.mobile-menu.open li:nth-child(3) a { transition-delay: 0.15s; }
.mobile-menu.open li:nth-child(4) a { transition-delay: 0.2s; }
.mobile-menu.open li:nth-child(5) a { transition-delay: 0.25s; }
.mobile-menu a:hover { color: var(--gold); }

/* ── HERO ─────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Film grain */
.grain {
  position: absolute;
  inset: -50%;
  width: 200%;
  height: 200%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.035;
  pointer-events: none;
  z-index: 5;
  animation: grain-shift 8s steps(2) infinite;
}

@keyframes grain-shift {
  0%   { transform: translate(0,0); }
  10%  { transform: translate(-3%,-5%); }
  20%  { transform: translate(5%,3%); }
  30%  { transform: translate(-4%,6%); }
  40%  { transform: translate(6%,-3%); }
  50%  { transform: translate(-2%,5%); }
  60%  { transform: translate(3%,-4%); }
  70%  { transform: translate(-5%,2%); }
  80%  { transform: translate(4%,5%); }
  90%  { transform: translate(-3%,-2%); }
  100% { transform: translate(0,0); }
}

/* Animated background orbs */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: var(--bg);
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: -12px;
  background-image: var(--hero-bg-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(1px) saturate(1.05) contrast(1.02);
  transform: scale(1.02);
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 52% 46% at 50% 45%, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.24) 70%, rgba(0,0,0,0.48) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.56) 0%, rgba(0,0,0,0.10) 36%, rgba(8,8,8,0.68) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.38) 0%, rgba(0,0,0,0.05) 45%, rgba(0,0,0,0.28) 100%),
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,169,110,0.08), transparent 62%);
  z-index: 1;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0;
  animation: orb-appear 2s var(--ease) forwards;
  z-index: 2;
}

.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(120,80,20,0.25), transparent 70%);
  top: -15%; left: -10%;
  animation-delay: 0.5s;
  animation-name: orb-appear, orb-drift-1;
  animation-duration: 2s, 20s;
  animation-timing-function: var(--ease), ease-in-out;
  animation-fill-mode: forwards, none;
  animation-iteration-count: 1, infinite;
  animation-delay: 0.5s, 2.5s;
}
.orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(80,50,10,0.2), transparent 70%);
  bottom: -10%; right: -5%;
  animation-name: orb-appear, orb-drift-2;
  animation-duration: 2s, 25s;
  animation-timing-function: var(--ease), ease-in-out;
  animation-fill-mode: forwards, none;
  animation-iteration-count: 1, infinite;
  animation-delay: 0.8s, 2.8s;
}
.orb-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(100,65,15,0.15), transparent 70%);
  top: 40%; left: 50%;
  transform: translate(-50%, -50%);
  animation-name: orb-appear, orb-drift-3;
  animation-duration: 2s, 30s;
  animation-timing-function: var(--ease), ease-in-out;
  animation-fill-mode: forwards, none;
  animation-iteration-count: 1, infinite;
  animation-delay: 1s, 3s;
}

@keyframes orb-appear { to { opacity: 1; } }
@keyframes orb-drift-1 {
  0%, 100% { transform: translate(0,0); }
  33% { transform: translate(40px, 30px); }
  66% { transform: translate(-20px, 50px); }
}
@keyframes orb-drift-2 {
  0%, 100% { transform: translate(0,0); }
  33% { transform: translate(-30px, -40px); }
  66% { transform: translate(20px, -20px); }
}
@keyframes orb-drift-3 {
  0%, 100% { transform: translate(-50%, -50%); }
  50% { transform: translate(-48%, -52%); }
}

/* Horizontal rules from the alternate cover */
.hero-rule {
  position: absolute;
  left: 4rem;
  right: 4rem;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,169,110,0.26), transparent);
  z-index: 8;
}
.top-rule { top: 7rem; }
.bottom-rule { bottom: 4rem; }

/* Hero content */
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 20px;
  max-width: 900px;
}

.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 30px;
  opacity: 0;
}

.hero-name {
  font-size: clamp(3.8rem, 9vw, 7.6rem);
  line-height: 0.95;
  color: var(--text);
  margin-bottom: 30px;
  opacity: 0;
}

.hero-name span {
  display: block;
}

.hero-name .name-last {
  color: var(--gold);
  font-style: italic;
}

.hero-title .line {
  display: block;
  opacity: 0;
  transform: translateY(30px);
  animation: none;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-style: normal;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin-bottom: 48px;
  opacity: 0;
}

.hero-sub {
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  margin-bottom: 48px;
  opacity: 0;
}

/* Reveal animations */
.reveal        { animation: fade-up 1s var(--ease) 0.3s forwards; }
.reveal-delay-1 { animation: reveal-title 1.2s var(--ease) 0.5s forwards; }
.reveal-delay-2 { animation: fade-up 1s var(--ease) 0.9s forwards; }
.reveal-delay-3 { animation: fade-up 1s var(--ease) 1.1s forwards; }
.reveal-delay-4 { animation: fade-up 1s var(--ease) 1.3s forwards; }

@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

/* Both lines of title animate together */
.hero-title .line:first-child { animation: reveal-title 1.2s var(--ease) 0.5s forwards; }
.hero-title .line:last-child  { animation: reveal-title 1.2s var(--ease) 0.65s forwards; }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 10vh;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fade-up 1s var(--ease) 2s forwards;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-pulse 2.5s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

.scroll-indicator span {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ── BUTTONS ──────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: transparent;
  border: 1px solid rgba(201,169,110,0.5);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.2s;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-100%);
  transition: transform 0.4s var(--ease);
  z-index: 0;
}

.btn-primary:hover::before { transform: translateX(0); }
.btn-primary:hover { color: var(--bg); border-color: var(--gold); }
.btn-primary span, .btn-primary svg { position: relative; z-index: 1; }
.btn-primary.full { width: 100%; justify-content: center; }
.btn-primary:active { transform: scale(0.98); }

/* ── SECTIONS ─────────────────────────────────────────── */
.section {
  padding: var(--section-pad) 0;
}

.section-alt {
  background: var(--surface);
}

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

.section-header.left {
  text-align: left;
}

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

.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--text);
}

.section-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-top: 12px;
}

/* ── FADE-IN (scroll-triggered) ───────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── DEMO REEL ─────────────────────────────────────────── */
.reel-wrapper {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: center;
}

.video-frame {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  background: #000;
  border: 1px solid var(--border);
  overflow: hidden;
}

.video-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 60px rgba(0,0,0,0.5);
  z-index: 1;
  pointer-events: none;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.reel-meta h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--text);
}
.reel-meta p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ── PORTFOLIO GRID ───────────────────────────────────── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.portfolio-item {
  background: var(--surface-2);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.4s var(--ease);
}

.portfolio-item:hover {
  border-color: rgba(201,169,110,0.3);
  transform: translateY(-4px);
}

.portfolio-video {
  position: relative;
  padding-bottom: 56.25%;
  background: #000;
}

.portfolio-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.portfolio-info {
  padding: 20px 22px 24px;
}

.portfolio-tag {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}

.portfolio-info h4 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: var(--text);
}

.portfolio-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── SERVICES ─────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
}

.service-card {
  padding: 40px 28px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  transition: background 0.35s, border-color 0.35s, transform 0.4s var(--ease);
  cursor: default;
}

.service-card:hover {
  background: var(--surface);
  border-color: rgba(201,169,110,0.25);
  transform: translateY(-6px);
}

.service-icon {
  width: 48px; height: 48px;
  color: var(--gold);
  margin-bottom: 24px;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 14px;
  color: var(--text);
}

.service-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ── ABOUT ────────────────────────────────────────────── */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 80px;
  align-items: center;
}

.about-quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 32px;
  padding-left: 24px;
  border-left: 2px solid var(--gold);
}

.about-body {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.9;
  margin-bottom: 20px;
}

.about-credentials {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.credential {
  text-align: center;
  padding: 20px 12px;
  border: 1px solid var(--border);
  background: var(--surface-2);
}

.credential span {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 6px;
}

.credential small {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* About visual */
.about-image-box {
  position: relative;
}

.image-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--surface-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.placeholder-inner {
  text-align: center;
  color: var(--text-dim);
}

.placeholder-inner p {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 12px;
}

.image-accent {
  position: absolute;
  inset: -10px -10px 10px 10px;
  border: 1px solid rgba(201,169,110,0.2);
  z-index: 0;
}

/* ── CONTACT ──────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 560px;
  gap: 80px;
  align-items: start;
}

.contact-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--gold);
  margin: 20px 0 24px;
}

.contact-body {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 40px;
}

/* Social links */
.social-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  border: 1px solid var(--border);
  background: var(--surface-2);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}

.social-link:hover {
  border-color: rgba(201,169,110,0.4);
  color: var(--gold);
  background: var(--gold-dim);
}

.social-link svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
}

/* Contact form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.3s;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9a96e' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px;
  padding-right: 40px;
  cursor: pointer;
}

.form-group select option {
  background: var(--surface-2);
  color: var(--text);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: rgba(201,169,110,0.5);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-dim);
}

.form-success {
  display: none;
  text-align: center;
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  padding: 16px;
  border: 1px solid rgba(201,169,110,0.3);
  background: var(--gold-dim);
}

.form-success.show { display: block; }

/* ── FOOTER ───────────────────────────────────────────── */
#footer {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}

.footer-brand p {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--text-dim);
}

.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }

.footer-copy {
  width: 100%;
  text-align: center;
  font-size: 0.72rem;
  color: var(--text-dim);
  margin-top: 8px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  letter-spacing: 0.08em;
}

/* ── DESKTOP-ONLY ─────────────────────────────────────── */
.desktop-br { display: block; }

/* ── RESPONSIVE ───────────────────────────────────────── */

/* Tablet: ≤ 1100px */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .reel-wrapper { grid-template-columns: 1fr; }
  .reel-meta { max-width: 640px; }
}

/* Small tablet / large mobile: ≤ 860px */
@media (max-width: 860px) {
  :root { --section-pad: 80px; }
  .container { padding: 0 24px; }

  .hamburger { display: flex; }
  .nav-links { display: none; }
  #navbar { padding: 20px 24px; }
  #navbar.scrolled { padding: 14px 24px; }
  .hero-rule { left: 1.5rem; right: 1.5rem; }

  .about-layout { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { order: -1; max-width: 320px; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .about-credentials { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile: ≤ 600px */
@media (max-width: 600px) {
  :root { --section-pad: 64px; }

  .hero-name { font-size: clamp(3.2rem, 15vw, 5.2rem); }
  .hero-tagline { margin-bottom: 40px; }
  .top-rule { top: 6rem; }
  .desktop-br { display: none; }

  .portfolio-grid { grid-template-columns: 1fr; }
  .services-grid  { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
  .about-credentials { grid-template-columns: repeat(2, 1fr); }
  .social-links { flex-direction: column; }
  .section-header { margin-bottom: 40px; }
}
