/* ==============================================
   MANDRAKE PICTURES — Main Stylesheet
   ============================================== */

/* Reset */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
img, video { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { background: none; border: none; }

/* Custom Properties */
:root {
  --bg:        #080808;
  --bg2:       #0f0f0f;
  --bg3:       #191919;
  --yellow:    #FFD84D;
  --gold:      #D22026;
  --gold-lt:   #F14B52;
  --white:     #F4F0EB;
  --muted:     #77776E;
  --border:    rgba(210,32,38,0.18);
  --ff-disp:   'Bebas Neue', sans-serif;
  --ff-head:   'Barlow Condensed', sans-serif;
  --ff-body:   'DM Sans', sans-serif;
  --ease:      cubic-bezier(0.16, 1, 0.3, 1);
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 1rem;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}

/* ---- Custom Cursor ---- */
#cursor {
  position: fixed;
  width: 42px; height: 42px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width .35s var(--ease), height .35s var(--ease),
              border-color .3s, opacity .3s;
  z-index: 9999;
  will-change: left, top;
}
#cursor-dot {
  position: fixed;
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 10000;
  will-change: left, top;
}
body.cursor-hover #cursor {
  width: 72px; height: 72px;
  border-color: var(--gold-lt);
  background: rgba(210,32,38,0.10);
}

/* ---- Preloader ---- */
#preloader {
  position: fixed; inset: 0;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  z-index: 9000;
  transition: opacity .9s var(--ease), visibility .9s;
}
#preloader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.pre-inner {
  display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
}
.pre-gif {
  width: clamp(200px, 35vw, 400px);
  height: auto;
  object-fit: contain;
  animation: preScale 1.4s var(--ease) both;
}
.pre-letter {
  font-family: var(--ff-disp);
  font-size: clamp(5rem, 18vw, 14rem);
  color: var(--gold);
  letter-spacing: -.02em;
  line-height: 1;
  animation: preScale 1.4s var(--ease) both;
}
.pre-bar {
  width: 0; height: 2px;
  background: var(--gold);
  animation: preBar 1.2s var(--ease) .3s both;
}
@keyframes preScale {
  0%   { transform: scale(.75); opacity: 0; }
  60%  { transform: scale(1.04); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}
@keyframes preBar {
  from { width: 0; }
  to   { width: 120px; }
}

/* ---- Navigation ---- */
nav#nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 500;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.5rem 5%;
  background: rgba(233,30,35,0.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border);
  transition: background .45s, padding .45s, box-shadow .45s;
}
nav#nav.scrolled {
  background: rgba(233,30,35,0.98);
  backdrop-filter: blur(14px);
  padding: 0.5rem 5%;
  box-shadow: 0 1px 0 var(--border);
}
.nav-logo { display: flex; align-items: center; }
.nav-logo img { 
  height: 70px; 
  width: auto; 
  object-fit: contain; 
  filter: brightness(1.3);
}
.logo-text {
  font-family: var(--ff-disp);
  font-size: 1.65rem;
  letter-spacing: .14em;
  color: var(--gold);
}
.nav-links { display: flex; gap: 2.8rem; list-style: none; }
.nav-links a {
  font-family: var(--ff-head);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--white);
  transition: color .3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; left: 0; bottom: -4px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .3s var(--ease);
}
.nav-links a:hover,
.nav-links a.active,
.nav-links a[aria-current="page"] { color: var(--yellow); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active::after,
.nav-links a[aria-current="page"]::after {
  width: 100%;
  background: var(--yellow);
}
.nav-cta {
  font-family: var(--ff-head);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .65rem 1.8rem;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  transition: background .3s, color .3s;
  cursor: pointer;
}
.nav-cta:hover { background: var(--gold); color: var(--bg); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 26px; height: 2px;
  background: var(--white);
  transition: transform .3s, opacity .3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Mobile Menu ---- */
.mobile-menu {
  position: fixed; inset: 0;
  background: var(--bg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 2rem;
  z-index: 490;
  opacity: 0; visibility: hidden;
  transition: opacity .4s var(--ease), visibility .4s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a {
  font-family: var(--ff-disp);
  font-size: clamp(2.8rem, 9vw, 5.5rem);
  color: var(--white);
  letter-spacing: .04em;
  transition: color .3s, transform .3s;
}
.mobile-menu a:hover { color: var(--gold); transform: translateX(8px); }
.mobile-logo {
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 2rem;
}
.mobile-logo img { height: 60px; width: auto; object-fit: contain; }
.mobile-logo-text {
  font-family: var(--ff-disp);
  font-size: clamp(2rem, 8vw, 3.5rem);
  letter-spacing: .14em;
  color: var(--gold);
}

/* ---- Film Grain ---- */
.grain {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 1;
  opacity: .045;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3e%3cfilter id='n'%3e%3cfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3e%3c/filter%3e%3crect width='300' height='300' filter='url(%23n)'/%3e%3c/svg%3e");
  background-size: 180px;
  animation: grain .5s steps(2) infinite;
}
@keyframes grain {
  0%   { transform: translate(0,0); }
  25%  { transform: translate(-2px, 2px); }
  50%  { transform: translate(2px, -2px); }
  75%  { transform: translate(-1px,-1px); }
  100% { transform: translate(1px, 1px); }
}

/* ---- Hero ---- */
#hero {
  position: relative;
  height: 100vh; min-height: 620px;
  display: flex; align-items: center;
  padding: 5.6rem 5% 7%;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(120deg, rgba(0,0,0,.16), rgba(0,0,0,.5)),
    url('../images/page_11.jpg') center 12%/cover no-repeat;
  will-change: transform;
  transform-origin: center top;
  filter: saturate(1.05) contrast(1.08);
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    165deg,
    rgba(8,8,8,.64) 0%,
    rgba(8,8,8,.4) 42%,
    rgba(8,8,8,.9) 100%
  );
}
.hero-content { position: relative; z-index: 2; max-width: 920px; }
.hero-eyebrow {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1.4rem;
  opacity: 0;
  animation: fadeUp .8s var(--ease) .5s both;
}
.eyebrow-line { width: 44px; height: 1px; background: var(--gold); }
.hero-eyebrow span {
  font-family: var(--ff-head);
  font-size: .78rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-lt);
}
.hero-title {
  font-family: var(--ff-disp);
  font-size: clamp(2.45rem, 5.8vw, 5rem);
  line-height: .88;
  letter-spacing: -.01em;
  color: var(--white);
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line span {
  display: block;
  transform: translateY(110%);
  animation: slideLine .95s var(--ease) both;
}
.hero-title .line:nth-child(1) span { animation-delay: .1s; }
.hero-title .line:nth-child(2) span { animation-delay: .3s; }
@keyframes slideLine { to { transform: translateY(0); } }
.hero-sub {
  margin-top: 1.6rem;
  font-family: var(--ff-head);
  font-size: clamp(.9rem, 1.45vw, 1.06rem);
  font-weight: 300;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(244,240,235,.6);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  opacity: 0;
  animation: fadeUp .8s var(--ease) .7s both;
}
.hero-actions {
  display: flex; align-items: center; gap: 2rem;
  margin-top: 1.85rem;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fadeUp .8s var(--ease) .9s both;
}
.hero-scroll {
  position: absolute; right: 5%; bottom: 7%; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: .6rem;
  opacity: 0;
  animation: fadeUp .8s var(--ease) 1.2s both;
}
.hero-scroll span {
  font-family: var(--ff-head);
  font-size: .7rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--muted);
  writing-mode: vertical-lr;
}
.scroll-line {
  width: 1px; height: 64px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50%       { transform: scaleY(.4); opacity: .3; }
}

/* ---- Hero Slider ---- */
.hero-slider {
  position: absolute; inset: 0;
  display: flex;
  width: 100%;
}
.hero-slide {
  position: absolute; inset: 0;
  width: 100%;
  display: flex; align-items: center;
  padding: 5.6rem 5% 7%;
  opacity: 0;
  transition: opacity .8s var(--ease);
  pointer-events: none;
}
.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 3;
}
.hero-slide .hero-content {
  position: relative;
  z-index: 2;
  width: min(820px, 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: .9rem;
  animation: slideInUp .8s var(--ease) .1s both;
}
.hero-slide .hero-eyebrow {
  justify-content: center;
  margin-bottom: 0;
}
@keyframes slideInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Slider Navigation Dots */
.slider-dots {
  position: absolute; bottom: 7%; left: 5%;
  display: flex; gap: 1rem;
  z-index: 5;
  align-items: center;
}
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,216,77,.3);
  border: 1.5px solid rgba(255,216,77,.5);
  cursor: pointer;
  transition: all .4s var(--ease);
  padding: 0;
}
.dot.active {
  background: var(--gold);
  width: 28px;
  border-radius: 6px;
  box-shadow: 0 0 12px rgba(255,216,77,.4);
}
.dot:hover:not(.active) {
  background: rgba(255,216,77,.6);
  border-color: var(--gold);
}

/* Slider Controls */
.slider-control {
  position: absolute;
  bottom: 7%; right: 5%;
  z-index: 5;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid rgba(255,216,77,.4);
  border-radius: 50%;
  color: var(--gold);
  cursor: pointer;
  transition: all .3s var(--ease);
  padding: 0;
}
.slider-control:hover {
  background: rgba(255,216,77,.12);
  border-color: var(--gold);
  transform: scale(1.08);
}
.slider-control svg { transition: transform .3s var(--ease); }
.slider-prev {
  right: calc(5% + 60px);
}
.slider-prev:hover svg { transform: translateX(-3px); }
.slider-next:hover svg { transform: translateX(3px); }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---- Buttons ---- */
.btn-primary {
  display: inline-flex; align-items: center; gap: .75rem;
  font-family: var(--ff-head);
  font-size: .9rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  padding: 1rem 2.4rem;
  background: var(--gold); color: var(--bg);
  position: relative; overflow: hidden;
  transition: transform .3s var(--ease);
  cursor: pointer;
}
.btn-primary::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,.18);
  transform: translateX(-100%);
  transition: transform .4s var(--ease);
}
.btn-primary:hover::after { transform: translateX(0); }
.btn-ghost {
  font-family: var(--ff-head);
  font-size: .9rem; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--muted);
  display: flex; align-items: center; gap: .5rem;
  transition: color .3s;
  cursor: pointer;
}
.btn-ghost:hover { color: var(--white); }

/* ---- Ticker Strip ---- */
.ticker-wrap {
  overflow: hidden; background: var(--gold); padding: 1rem 0;
  position: relative; z-index: 3;
}
.ticker-inner {
  display: flex; white-space: nowrap;
  width: max-content;
  animation: tickerMove 28s linear infinite;
}
.ticker-inner span {
  font-family: var(--ff-head);
  font-size: .95rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--white); padding: 0 2rem;
}
.ticker-inner .sep { color: rgba(244,240,235,.45); padding: 0 1rem; }
@keyframes tickerMove {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---- Shared Section Utilities ---- */
.container { max-width: 1400px; margin: 0 auto; padding: 0 5%; }
.section-pad { padding: 8rem 0; }

.reveal {
  opacity: 0;
  transform: translateY(42px);
  transition: opacity .85s var(--ease), transform .85s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .24s; }
.reveal-delay-3 { transition-delay: .36s; }
.reveal-delay-4 { transition-delay: .48s; }

.section-label {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1rem;
}
.section-label span {
  font-family: var(--ff-head);
  font-size: .75rem; letter-spacing: .32em;
  text-transform: uppercase; color: var(--gold);
}
.label-line { flex: 1; max-width: 56px; height: 1px; background: var(--border); }
.section-title {
  font-family: var(--ff-disp);
  font-size: clamp(2.8rem, 5.5vw, 5.8rem);
  line-height: 1; letter-spacing: .01em;
}
.section-title em { color: var(--gold); font-style: normal; }
.section-body {
  font-size: 1.05rem;
  color: rgba(244,240,235,.68);
  line-height: 1.85;
  max-width: 540px;
}

/* ---- About ---- */
#about { background: var(--bg2); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5.5rem; align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-image-wrap::before {
  content: '';
  position: absolute;
  top: -18px; left: -18px; right: 18px; bottom: 18px;
  border: 1px solid var(--border);
  z-index: 0; pointer-events: none;
}
.about-image-wrap img {
  position: relative; z-index: 1;
  width: 100%; height: 560px;
  object-fit: cover; object-position: center;
}
.about-text p { margin-bottom: 1.4rem; }
.about-stats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem; padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}
.stat-num {
  font-family: var(--ff-disp);
  font-size: 3.8rem; line-height: 1;
  color: var(--gold); letter-spacing: .02em;
}
.stat-label {
  font-family: var(--ff-head);
  font-size: .75rem; letter-spacing: .22em;
  text-transform: uppercase; color: var(--muted);
  margin-top: .3rem;
}

/* ---- Services ---- */
#services { background: var(--bg); }
.services-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 4rem; flex-wrap: wrap; gap: 2rem;
}
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border);
}
.service-card {
  display: block;
  color: inherit;
  background: var(--bg);
  padding: 3rem 2.5rem;
  position: relative; overflow: hidden;
  transition: border-bottom-color .3s;
  border-bottom: 3px solid transparent;
}
.service-card::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--bg3);
  transform: translateY(101%);
  transition: transform .55s var(--ease);
  z-index: 0;
}
.service-card:hover::before { transform: translateY(0); }
.service-card:hover { border-bottom-color: var(--gold); }
.service-card > * { position: relative; z-index: 1; }
.service-num {
  font-family: var(--ff-disp);
  font-size: 4.5rem; line-height: 1;
  color: rgba(210,32,38,.12);
  margin-bottom: 1.5rem;
  transition: color .4s;
}
.service-card:hover .service-num { color: rgba(210,32,38,.24); }
.service-icon {
  width: 46px; height: 46px; color: var(--gold);
  margin-bottom: 1.5rem;
}
.service-icon svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1.6; }
.service-name {
  font-family: var(--ff-head);
  font-size: 1.45rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  margin-bottom: .9rem;
  transition: color .3s;
}
.service-card:hover .service-name { color: var(--gold); }
.service-desc {
  font-size: .95rem; color: var(--muted);
  line-height: 1.72;
  transition: color .3s;
}
.service-card:hover .service-desc { color: rgba(244,240,235,.62); }
.service-arrow {
  display: inline-flex; align-items: center; gap: .5rem;
  margin-top: 1.5rem;
  font-family: var(--ff-head);
  font-size: .78rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold);
  opacity: 0; transform: translateY(8px);
  transition: opacity .4s, transform .4s var(--ease);
}
.service-card:hover .service-arrow { opacity: 1; transform: translateY(0); }

/* ---- Work / Portfolio ---- */
#work { background: var(--bg2); }
.work-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 3.5rem; flex-wrap: wrap; gap: 2rem;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 290px;
  gap: 10px;
}
.portfolio-item {
  position: relative; overflow: hidden; cursor: pointer;
  background: var(--bg3);
}
.portfolio-item:nth-child(1) { grid-column: span 7; grid-row: span 2; }
.portfolio-item:nth-child(2) { grid-column: span 5; }
.portfolio-item:nth-child(3) { grid-column: span 5; }
.portfolio-item:nth-child(4) { grid-column: span 4; }
.portfolio-item:nth-child(5) { grid-column: span 4; }
.portfolio-item:nth-child(6) { grid-column: span 4; }
.portfolio-item:nth-child(7) { grid-column: span 5; }
.portfolio-item:nth-child(8) { grid-column: span 7; }
.portfolio-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .75s var(--ease);
}
.portfolio-item:hover img { transform: scale(1.07); }
.portfolio-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,.88) 0%, transparent 55%);
  opacity: 0; transition: opacity .4s;
  display: flex; flex-direction: column;
  justify-content: flex-end; padding: 1.6rem;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-cat {
  font-family: var(--ff-head);
  font-size: .72rem; letter-spacing: .28em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: .4rem;
}
.portfolio-title {
  font-family: var(--ff-head);
  font-size: 1.15rem; font-weight: 700; color: var(--white);
}

/* ---- Clients ---- */
#clients { background: var(--bg); padding: 5.5rem 0; overflow: hidden; }
.clients-label {
  text-align: center;
  font-family: var(--ff-head);
  font-size: .72rem; letter-spacing: .32em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 3.5rem;
}
.clients-track-wrap { overflow: hidden; position: relative; }
.clients-track {
  display: flex; gap: 4.5rem;
  width: max-content; align-items: center;
  animation: tickerMove 30s linear infinite;
}
.client-logo {
  height: 44px; width: auto; object-fit: contain;
  filter: grayscale(1) brightness(.65);
  transition: filter .45s, transform .35s;
  flex-shrink: 0;
}
.client-logo:hover {
  filter: grayscale(0) brightness(1);
  transform: scale(1.08);
}

/* ---- Philosophy / Quote ---- */
#philosophy {
  background: var(--bg);
  padding: 10rem 6%; text-align: center;
  position: relative; overflow: hidden;
}
#philosophy::before {
  content: '"';
  position: absolute; top: -6rem; left: 50%;
  transform: translateX(-50%);
  font-family: var(--ff-disp);
  font-size: clamp(12rem, 40vw, 30rem);
  color: rgba(210,32,38,.08);
  line-height: 1; pointer-events: none;
  white-space: nowrap;
}
.philosophy-quote {
  position: relative; z-index: 1;
  font-family: var(--ff-disp);
  font-size: clamp(2rem, 4.5vw, 4.6rem);
  line-height: 1.18; letter-spacing: .01em;
  max-width: 1050px; margin: 0 auto 2rem;
}
.philosophy-author {
  font-family: var(--ff-head);
  font-size: .82rem; letter-spacing: .28em;
  text-transform: uppercase; color: var(--gold);
}

/* ---- Contact ---- */
#contact { background: var(--bg2); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: start;
}
.contact-info h2 {
  font-family: var(--ff-disp);
  font-size: clamp(2.8rem, 5vw, 5.5rem);
  line-height: 1; margin-bottom: 1.4rem;
}
.contact-details { margin-top: 3rem; }
.contact-detail {
  display: flex; gap: 1.5rem;
  margin-bottom: 2rem; align-items: flex-start;
}
.detail-icon { width: 20px; color: var(--gold); flex-shrink: 0; margin-top: .15rem; }
.detail-icon svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.detail-label {
  font-family: var(--ff-head);
  font-size: .72rem; letter-spacing: .22em;
  text-transform: uppercase; color: var(--muted); margin-bottom: .2rem;
}
.detail-value { font-size: .95rem; color: var(--white); }
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  font-family: var(--ff-head);
  font-size: .72rem; letter-spacing: .22em;
  text-transform: uppercase; color: var(--muted); margin-bottom: .55rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  color: var(--white);
  padding: .95rem 1.1rem;
  font-family: var(--ff-body);
  font-size: .95rem;
  outline: none;
  transition: border-color .3s;
  resize: none;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); }
.form-group textarea { min-height: 130px; }
.form-group select { cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.social-row { display: flex; gap: 1rem; margin-top: 2.5rem; }
.social-btn {
  width: 42px; height: 42px; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); transition: border-color .3s, color .3s;
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); }
.social-btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.5; }

/* ---- Social Showcase ---- */
#social-showcase {
  background:
    radial-gradient(circle at top left, rgba(210,32,38,.12), transparent 32%),
    linear-gradient(180deg, var(--bg2), var(--bg));
}
.social-showcase-head {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr);
  gap: 2.5rem;
  align-items: end;
  margin-bottom: 2.6rem;
}
.social-showcase-head .section-body {
  max-width: 560px;
}
.insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.insta-card {
  display: block;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.03);
  overflow: hidden;
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.insta-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,216,77,.34);
  box-shadow: 0 18px 40px rgba(0,0,0,.22);
}
.insta-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.insta-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease), filter .6s var(--ease);
  filter: saturate(1.04) contrast(1.04);
}
.insta-card:hover .insta-media img {
  transform: scale(1.06);
}
.insta-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,8,8,.05), rgba(8,8,8,.45));
}
.insta-play {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 1;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8,8,8,.55);
  border: 1px solid rgba(255,216,77,.38);
  color: var(--yellow);
}
.insta-play svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.insta-card-body {
  padding: 1.35rem 1.2rem 1.45rem;
}
.insta-kicker {
  display: inline-block;
  font-family: var(--ff-head);
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}
.insta-card-body h3 {
  font-family: var(--ff-head);
  font-size: 1.2rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: .7rem;
}
.insta-card-body p {
  color: rgba(244,240,235,.62);
  font-size: .95rem;
  line-height: 1.7;
}
.social-showcase-actions {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

/* ---- Footer ---- */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 4.5rem 5% 2.5rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--border);
}
.footer-brand-name {
  font-family: var(--ff-disp);
  font-size: 2.4rem; color: var(--gold); letter-spacing: .08em;
  margin-bottom: .8rem;
}
.footer-brand p { color: var(--muted); font-size: .9rem; max-width: 280px; line-height: 1.65; }
.footer-col h4 {
  font-family: var(--ff-head);
  font-size: .72rem; letter-spacing: .28em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 1.4rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: .75rem; }
.footer-col a {
  font-size: .9rem;
  color: rgba(244,240,235,.45);
  transition: color .3s;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: .8rem; color: var(--muted); }

/* ---- Service Detail Pages ---- */
.service-intro-copy {
  color: rgba(244,240,235,.7);
  max-width: 760px;
  margin-top: 1rem;
}
.work-showcase {
  margin-top: 4rem;
}
.work-showcase h3,
.why-choose h3 {
  font-family: var(--ff-head);
  font-size: 1.6rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.work-showcase p,
.why-choose p {
  color: rgba(244,240,235,.65);
  margin-bottom: 1.2rem;
}
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.work-item {
  display: block;
  width: 100%;
  text-align: left;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.02);
  color: var(--white);
  cursor: pointer;
  transition: border-color .3s, transform .3s var(--ease);
}
.work-item:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}
.work-item img {
  width: 100%;
  height: 165px;
  object-fit: cover;
}
.work-item-body {
  padding: 1rem;
}
.work-item-title {
  font-family: var(--ff-head);
  font-size: 1rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: .35rem;
}
.work-item-desc {
  font-size: .88rem;
  color: rgba(244,240,235,.62);
}
.why-choose {
  margin-top: 4rem;
}
.service-bottom {
  max-width: 1300px;
  margin: 3.5rem auto 0;
}
.service-bottom .work-showcase {
  margin-top: 0;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.why-card {
  border: 1px solid var(--border);
  background: rgba(255,255,255,.02);
  padding: 1.2rem;
}
.why-card h4 {
  font-family: var(--ff-head);
  font-size: .95rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}
.why-card p {
  margin: 0;
  font-size: .9rem;
  color: rgba(244,240,235,.64);
}

/* ---- Work Modal ---- */
.work-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.8);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  z-index: 1200;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s ease, visibility .25s ease;
}
.work-modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.work-modal-dialog {
  width: min(980px, 95vw);
  max-height: 90vh;
  overflow: auto;
  background: #080808;
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.work-modal-img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}
.work-modal-content {
  padding: 1.5rem;
  position: relative;
}
.work-modal-close {
  position: absolute;
  top: .8rem;
  right: .8rem;
  width: 34px;
  height: 34px;
  border: 1px solid var(--border);
  color: var(--white);
  cursor: pointer;
}
.work-modal-content h3 {
  font-family: var(--ff-head);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 2rem 0 .9rem;
}
.work-modal-content p {
  color: rgba(244,240,235,.68);
}

/* ---- Responsive ---- */
@media (max-width: 1100px) {
  .social-showcase-head {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .insta-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-slide .hero-content {
    width: min(760px, 100%);
  }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-image-wrap img { height: 420px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .portfolio-grid { grid-auto-rows: 230px; }
  .showcase-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  #hero { padding: 5.2rem 5% 10rem; }
  .hero-slide { padding: 5.2rem 5% 10rem; }
  .insta-grid { grid-template-columns: 1fr; }
  .slider-dots { left: 5%; bottom: 9%; gap: .8rem; }
  .dot { width: 8px; height: 8px; }
  .dot.active { width: 24px; }
  .slider-control { width: 40px; height: 40px; bottom: 9.2%; }
  .slider-prev { right: calc(5% + 50px); }
  .slider-control svg { width: 18px; height: 18px; }
  .services-grid { grid-template-columns: 1fr; }
  .services-header { flex-direction: column; align-items: flex-start; }
  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px;
  }
  .portfolio-item:nth-child(n) { grid-column: span 1; grid-row: span 1; }
  .portfolio-item:nth-child(1) { grid-column: span 2; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  #philosophy { padding: 6rem 5%; }
  .showcase-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .work-modal-dialog { grid-template-columns: 1fr; }
  .work-modal-img { max-height: 280px; }
}
@media (max-width: 520px) {
  #hero { min-height: 700px; }
  .hero-slide { padding: 5rem 5% 14rem; }
  .hero-title { font-size: clamp(2.15rem, 11vw, 3.35rem); }
  .hero-sub { font-size: .88rem; }
  .slider-dots { bottom: 12%; gap: .6rem; }
  .dot { width: 6px; height: 6px; }
  .dot.active { width: 18px; }
  .slider-control { width: 36px; height: 36px; bottom: 12.2%; }
  .slider-prev { right: calc(5% + 44px); }
  .slider-control svg { width: 16px; height: 16px; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-item:nth-child(n) { grid-column: span 1; }
  .footer-top { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
}

/* ---- Touch: restore cursor ---- */
@media (hover: none) {
  body { cursor: auto; }
  #cursor, #cursor-dot { display: none; }
}
