/* ════════════════════════════════════════════════════════════
   SABA — Creative Strategist & Storyteller
   Static rebuild — style.css
   ════════════════════════════════════════════════════════════ */

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

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: #0A0A0A;
  color: #EDEDED;
  font-family: 'DM Sans', system-ui, sans-serif;
  overflow-x: hidden;
  cursor: none;
}
body.loading { overflow: hidden; }

img { max-width: 100%; }
a { color: inherit; }
button { font-family: inherit; }

/* ─── Layout helpers (Tailwind replacements) ────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
}
@media (min-width: 768px) {
  .container { padding-left: 4rem; padding-right: 4rem; }
}
@media (min-width: 1024px) {
  .container { padding-left: 6rem; padding-right: 6rem; }
}

.container-narrow { max-width: 1024px; margin: 0 auto; }
.container-prose { max-width: 1280px; margin: 0 auto; }

.relative { position: relative; }
.z-10 { z-index: 10; }

/* ─── Scrollbar ──────────────────────────────────────────── */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: #0A0A0A; }
::-webkit-scrollbar-thumb { background: #800000; border-radius: 2px; }

/* ─── Custom Cursor ──────────────────────────────────────── */
.cursor-dot {
  position: fixed; width: 8px; height: 8px; background: #800000;
  border-radius: 50%; pointer-events: none; z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width .3s, height .3s, background .3s;
  top: -100px; left: -100px;
}
.cursor-ring {
  position: fixed; width: 40px; height: 40px;
  border: 1px solid rgba(128,0,0,.55); border-radius: 50%;
  pointer-events: none; z-index: 9999; transform: translate(-50%, -50%);
  transition: width .3s, height .3s, border-color .3s, background .3s;
  top: -100px; left: -100px;
}
.cursor-dot.hovering { width: 6px; height: 6px; background: #fff; }
.cursor-ring.hovering { width: 60px; height: 60px; border-color: rgba(255,255,255,.3); background: rgba(128,0,0,.07); }

/* ─── Scroll Progress ────────────────────────────────────── */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0%;
  background: linear-gradient(90deg, #800000, #A00000);
  z-index: 9998; transition: width .1s;
}

/* ─── Particles canvas ───────────────────────────────────── */
#particles-canvas {
  position: fixed; inset: 0; pointer-events: none; z-index: 0; opacity: .55;
}

/* ─── Loading Screen ─────────────────────────────────────── */
.loading-screen {
  position: fixed; inset: 0; background: #0A0A0A; z-index: 9997;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transition: opacity .8s ease, visibility .8s ease;
}
.loading-screen.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.loading-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 10vw, 8rem);
  letter-spacing: .3em; color: transparent;
  -webkit-text-stroke: 1px rgba(237,237,237,.25);
  position: relative; overflow: hidden;
}
.loading-name::after {
  content: attr(data-text); position: absolute; inset: 0;
  color: #EDEDED; -webkit-text-stroke: 0;
  clip-path: inset(100% 0 0 0);
  animation: loadingReveal 1.5s cubic-bezier(.77,0,.175,1) .3s forwards;
}
@keyframes loadingReveal { to { clip-path: inset(0% 0 0 0); } }

.loading-sub {
  font-family: 'DM Sans', sans-serif; font-size: .65rem; letter-spacing: .35em;
  text-transform: uppercase; color: rgba(237,237,237,.35); margin-top: 1rem;
}

.loading-bar-container { width: 200px; height: 1px; background: rgba(237,237,237,.08); margin-top: 2rem; overflow: hidden; }
.loading-bar { height: 100%; background: #800000; animation: loadingBar 2s ease forwards; }
@keyframes loadingBar { from { width: 0%; } to { width: 100%; } }

/* ─── Scroll Reveal ──────────────────────────────────────── */
.reveal-element {
  opacity: 0; transform: translateY(36px);
  transition: opacity .9s cubic-bezier(.25,.46,.45,.94), transform .9s cubic-bezier(.25,.46,.45,.94);
}
.reveal-element.revealed { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0; transform: translateX(-48px);
  transition: opacity .9s cubic-bezier(.25,.46,.45,.94), transform .9s cubic-bezier(.25,.46,.45,.94);
}
.reveal-left.revealed { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0; transform: translateX(48px);
  transition: opacity .9s cubic-bezier(.25,.46,.45,.94), transform .9s cubic-bezier(.25,.46,.45,.94);
}
.reveal-right.revealed { opacity: 1; transform: translateX(0); }

.reveal-scale {
  opacity: 0; transform: scale(.93);
  transition: opacity .9s cubic-bezier(.25,.46,.45,.94), transform .9s cubic-bezier(.25,.46,.45,.94);
}
.reveal-scale.revealed { opacity: 1; transform: scale(1); }

.delay-100 { transition-delay: .1s; }
.delay-200 { transition-delay: .2s; }
.delay-300 { transition-delay: .3s; }
.delay-400 { transition-delay: .4s; }
.delay-500 { transition-delay: .5s; }
.delay-600 { transition-delay: .6s; }

/* ─── Section Label ──────────────────────────────────────── */
.section-label {
  font-family: 'DM Sans', sans-serif; font-size: .65rem; font-weight: 500;
  letter-spacing: .3em; text-transform: uppercase; color: #800000;
  display: flex; align-items: center; gap: .75rem;
}
.section-label::before { content: ''; display: block; width: 2rem; height: 1px; background: #800000; }
.section-label.centered { justify-content: center; }

/* ─── Divider ────────────────────────────────────────────── */
.divider-full {
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(237,237,237,.07), transparent);
}
.decorative-line { width: 60px; height: 1px; background: linear-gradient(90deg, #800000, transparent); margin-bottom: 2rem; }

/* ─── Navbar ─────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.5rem 2.5rem; display: flex; align-items: center; justify-content: space-between;
  transition: background .4s, padding .4s, backdrop-filter .4s;
}
.navbar.scrolled {
  background: rgba(10,10,10,.85); backdrop-filter: blur(20px);
  padding: 1rem 2.5rem; border-bottom: 1px solid rgba(237,237,237,.06);
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; letter-spacing: .15em;
  color: #EDEDED; text-decoration: none; transition: color .3s; background: none; border: none; cursor: none;
}
.nav-logo:hover { color: #800000; }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-link {
  font-family: 'DM Sans', sans-serif; font-size: .75rem; font-weight: 400;
  letter-spacing: .15em; text-transform: uppercase; color: rgba(237,237,237,.65);
  text-decoration: none; position: relative; transition: color .3s; background: none; border: none; cursor: none;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px;
  background: #800000; transition: width .3s;
}
.nav-link:hover, .nav-link.active { color: #EDEDED; }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.mobile-nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.mobile-nav-toggle span { display: block; width: 24px; height: 1px; background: #EDEDED; transition: transform .3s, opacity .3s; }
.mobile-nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.mobile-nav-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-nav {
  position: fixed; inset: 0; background: rgba(10,10,10,.97); z-index: 999;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2.5rem;
  transform: translateX(100%); transition: transform .5s cubic-bezier(.77,0,.175,1);
  backdrop-filter: blur(20px);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 300;
  color: rgba(237,237,237,.8); text-decoration: none; letter-spacing: .05em; transition: color .3s;
}
.mobile-nav a:hover { color: #800000; }

/* ─── Hero (Split Layout) ────────────────────────────────── */
.hero-section {
  position: relative; height: 100vh; min-height: 700px;
  overflow: hidden; display: flex; align-items: center;
  background: #0A0A0A;
}

.hero-portrait-side {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 52%;
  overflow: hidden;
}
.hero-portrait-side img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.82) contrast(1.04);
  transform: scale(1.03);
  will-change: transform;
  display: block;
}

.hero-portrait-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    #0A0A0A 0%,
    rgba(10,10,10,.85) 18%,
    rgba(10,10,10,.35) 50%,
    rgba(10,10,10,.12) 75%,
    rgba(10,10,10,.08) 100%
  );
  pointer-events: none;
}

.hero-bottom-fade {
  position: absolute; bottom: 0; left: 0; right: 0; height: 22%;
  background: linear-gradient(to top, #0A0A0A, transparent);
  pointer-events: none;
}

.hero-portrait-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 75% 40%, transparent 35%, rgba(10,10,10,.5) 100%);
  pointer-events: none;
}

.hero-text {
  position: relative; z-index: 10; width: 100%;
  padding: 6rem 2rem 0 2rem;
  max-width: 56%;
}
@media (min-width: 768px) { .hero-text { padding-left: 4rem; padding-right: 4rem; } }
@media (min-width: 1024px) { .hero-text { padding-left: 6rem; padding-right: 6rem; } }

.hero-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(5rem, 13vw, 12rem);
  letter-spacing: .04em; line-height: .88;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(237,237,237,.92);
  display: block;
}

.hero-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(237,237,237,.48);
  margin-top: 1rem;
  margin-bottom: 1.25rem;
}

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(1.1rem, 2.5vw, 1.75rem);
  line-height: 1.5;
  color: rgba(237,237,237,.82);
  max-width: 500px;
  margin-bottom: 1.5rem;
}

.hero-currently {
  margin-bottom: 2.5rem;
  display: flex; align-items: center; gap: .75rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(.95rem, 2vw, 1.2rem);
  font-weight: 400;
  color: rgba(237,237,237,.45);
}

/* Animated rotating titles */
.rotating-title {
  display: inline-block; overflow: hidden; height: 1.25em; vertical-align: bottom;
}
.rotating-title-inner {
  display: flex; flex-direction: column;
  animation: rotateTitlesLoop 12s ease-in-out infinite;
}
.rotating-title-item {
  height: 1.25em; line-height: 1.25; display: flex; align-items: center;
  color: #800000; font-style: italic;
}
@keyframes rotateTitlesLoop {
  0%,18%   { transform: translateY(0); }
  20%,38%  { transform: translateY(-1.25em); }
  40%,58%  { transform: translateY(-2.5em); }
  60%,78%  { transform: translateY(-3.75em); }
  80%,98%  { transform: translateY(-5em); }
  100%     { transform: translateY(-6.25em); }
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-scroll-cue {
  position: absolute; bottom: 2.5rem; left: 50%; z-index: 10;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero-scroll-cue button {
  background: none; border: none; cursor: none;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero-scroll-label {
  font-family: 'DM Sans', sans-serif; font-size: .6rem; letter-spacing: .28em;
  text-transform: uppercase; color: rgba(237,237,237,.35);
}
.hero-scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, rgba(237,237,237,.35), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100% { opacity: .3; } 50% { opacity: 1; } }

@media (max-width: 900px) {
  .hero-text { max-width: 100%; }
}

/* ─── About ──────────────────────────────────────────────── */
.about-section { background: #0A0A0A; padding: 6rem 0; position: relative; overflow: hidden; }
.about-glow {
  position: absolute; top: 0; right: 0; width: 40%; height: 100%;
  background: radial-gradient(ellipse at 100% 50%, rgba(128,0,0,.05) 0%, transparent 70%);
  pointer-events: none;
}
.about-grid {
  display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center;
}
@media (min-width: 1024px) {
  .about-grid { grid-template-columns: 1fr 1fr; gap: 6rem; }
}

.about-image-container {
  position: relative; overflow: hidden;
  aspect-ratio: 4/5; max-width: 480px;
  box-shadow:
    0 0 0 1px rgba(128,0,0,.22),
    0 8px 40px rgba(0,0,0,.7),
    0 24px 80px rgba(0,0,0,.5),
    inset 0 0 60px rgba(0,0,0,.25);
}
.about-image-container img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 22%; display: block;
  filter: brightness(.92) contrast(1.06) saturate(1.04);
  transition: transform .65s cubic-bezier(.25,.46,.45,.94);
}
.about-image-container:hover img { transform: scale(1.045); }
.about-image-container::before {
  content: ''; position: absolute; inset: -2px;
  border: 1px solid rgba(128,0,0,.28); z-index: 2; pointer-events: none;
}
.about-image-frame {
  position: absolute; bottom: -16px; right: -16px; width: 110px; height: 110px;
  border: 1px solid rgba(128,0,0,.28); pointer-events: none; z-index: -1;
}

.about-heading {
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  font-size: clamp(2.2rem, 4.5vw, 3.75rem); line-height: 1.1; color: #EDEDED;
  margin-bottom: 1.5rem;
}
.about-heading .accent { display: block; color: #800000; font-style: italic; }

.about-copy {
  font-family: 'DM Sans', sans-serif; font-size: .92rem; line-height: 1.85;
  color: rgba(237,237,237,.62); margin-bottom: 1.1rem;
}
.about-quote {
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.1rem;
  line-height: 1.7; color: rgba(237,237,237,.78); margin-bottom: 2.5rem;
}

.about-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: .75rem;
}
.about-stat-card {
  background: rgba(28,28,28,.6); border: 1px solid rgba(237,237,237,.08);
  backdrop-filter: blur(10px); transition: border-color .3s, background .3s;
  padding: 1rem;
}
.about-stat-card:hover { border-color: rgba(128,0,0,.4); background: rgba(28,28,28,.9); }
.about-stat-label {
  font-family: 'DM Sans', sans-serif; font-size: .58rem; font-weight: 500;
  letter-spacing: .25em; text-transform: uppercase; color: #800000; margin-bottom: .35rem;
}
.about-stat-value {
  font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 500; color: #EDEDED;
}

/* ─── Journey ────────────────────────────────────────────── */
.journey-section {
  position: relative; min-height: 90vh; display: flex; align-items: center; overflow: hidden;
}
.journey-parallax-image { position: absolute; inset: -20%; will-change: transform; }
.journey-parallax-image img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 20%;
  filter: brightness(.25) saturate(.5);
}
.journey-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,.7) 0%, rgba(128,0,0,.07) 50%, rgba(10,10,10,.7) 100%);
}
.journey-content { position: relative; z-index: 10; width: 100%; padding: 6rem 0; }

.journey-heading {
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  font-size: clamp(2.5rem, 6vw, 5rem); line-height: 1.1; color: #EDEDED;
  max-width: 680px; margin-bottom: 4rem;
}
.journey-heading .accent { color: #800000; font-style: italic; }

.journey-list { display: flex; flex-direction: column; gap: 3rem; max-width: 620px; }
.journey-item { display: flex; gap: 2rem; align-items: flex-start; }
.journey-num {
  font-family: 'Bebas Neue', sans-serif; font-size: .9rem; letter-spacing: .1em;
  color: #800000; opacity: .65; min-width: 2.2rem; padding-top: .15rem;
}
.journey-rule { width: 36px; height: 1px; background: rgba(128,0,0,.5); margin-bottom: .7rem; }
.journey-text {
  font-family: 'Cormorant Garamond', serif; font-weight: 300; font-style: italic;
  font-size: clamp(1.2rem, 2.8vw, 1.65rem); line-height: 1.45; color: rgba(237,237,237,.9);
}

/* ─── What I Create ──────────────────────────────────────── */
.create-section { background: #0A0A0A; padding: 6rem 0; }
.create-head {
  display: flex; flex-direction: column; justify-content: space-between; margin-bottom: 3.5rem; gap: 1.5rem;
}
@media (min-width: 768px) {
  .create-head { flex-direction: row; align-items: flex-end; }
}
.create-heading {
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  font-size: clamp(2.5rem, 5vw, 4.5rem); line-height: 1.1; color: #EDEDED; max-width: 560px;
}
.create-heading .accent { color: #800000; font-style: italic; }
.create-sub {
  font-family: 'DM Sans', sans-serif; font-size: .82rem; color: rgba(237,237,237,.42);
  max-width: 260px; line-height: 1.7;
}

.create-grid {
  display: grid; grid-template-columns: 1fr; gap: 1px;
  background: rgba(237,237,237,.055);
}
@media (min-width: 640px) { .create-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .create-grid { grid-template-columns: repeat(4, 1fr); } }

.create-card {
  position: relative; background: #0A0A0A;
  border: 1px solid rgba(237,237,237,.07); overflow: hidden;
  transition: border-color .4s, transform .4s cubic-bezier(.25,.46,.45,.94), background .4s;
  padding: 2rem;
}
.create-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, #800000, transparent);
  transform: scaleX(0); transition: transform .4s;
}
.create-card:hover { border-color: rgba(128,0,0,.3); transform: translateY(-6px); background: rgba(28,28,28,.9); }
.create-card:hover::before { transform: scaleX(1); }
.create-card-number {
  font-family: 'Bebas Neue', sans-serif; font-size: 4rem; line-height: 1;
  color: rgba(128,0,0,.14); transition: color .4s;
}
.create-card:hover .create-card-number { color: rgba(128,0,0,.32); }
.create-card-icon { color: #800000; margin: 1rem 0; }
.create-card-icon svg { width: 18px; height: 18px; }
.create-card-title {
  font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: 1.2rem;
  color: #EDEDED; margin-bottom: .65rem; letter-spacing: .02em;
}
.create-card-desc {
  font-family: 'DM Sans', sans-serif; font-size: .78rem; line-height: 1.75; color: rgba(237,237,237,.47);
}

/* ─── Philosophy ─────────────────────────────────────────── */
.philosophy-section {
  background: #0A0A0A; padding: 8rem 0; position: relative; overflow: hidden;
}
.philosophy-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(128,0,0,.05) 0%, transparent 70%);
  pointer-events: none;
}
.philosophy-inner {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  position: relative; z-index: 10;
}
.philosophy-mark {
  font-family: 'Cormorant Garamond', serif; font-size: 9rem; line-height: .55;
  color: rgba(128,0,0,.14); margin-bottom: 2rem; user-select: none;
}
.philosophy-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 300;
  line-height: 1.25; color: #EDEDED; max-width: 860px;
}
.philosophy-quote .accent { color: #800000; font-style: italic; }
.philosophy-divider {
  width: 56px; height: 1px; background: linear-gradient(90deg, transparent, #800000, transparent);
  margin: 2rem 0;
}
.philosophy-sub {
  font-family: 'Cormorant Garamond', serif; font-weight: 300; font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.55rem); line-height: 1.65; color: rgba(237,237,237,.6);
  max-width: 620px;
}
.philosophy-sig {
  margin-top: 3.5rem; display: flex; align-items: center; gap: 1.75rem; opacity: .38;
}
.philosophy-sig-line { width: 44px; height: 1px; background: #800000; }
.philosophy-sig-text {
  font-family: 'DM Sans', sans-serif; font-size: .58rem; letter-spacing: .35em;
  text-transform: uppercase; color: rgba(237,237,237,.6);
}

/* ─── Contact ────────────────────────────────────────────── */
.contact-section { position: relative; overflow: hidden; min-height: 80vh; display: flex; align-items: center; padding: 6rem 0; }
.contact-bg-image { position: absolute; inset: 0; }
.contact-bg-image img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.18) saturate(.4); }
.contact-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,.93) 0%, rgba(10,10,10,.75) 50%, rgba(10,10,10,.93) 100%);
}
.contact-inner { position: relative; z-index: 10; width: 100%; max-width: 1024px; margin: 0 auto; }
.contact-head { text-align: center; margin-bottom: 4rem; }
.contact-heading {
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  font-size: clamp(2.5rem, 6vw, 5rem); line-height: 1.1; color: #EDEDED; margin-bottom: 1.5rem;
}
.contact-heading .accent { display: block; color: #800000; font-style: italic; }
.contact-desc {
  font-family: 'DM Sans', sans-serif; font-size: .88rem; line-height: 1.75;
  color: rgba(237,237,237,.5); max-width: 440px; margin: 0 auto;
}

.contact-cards { display: flex; flex-direction: column; gap: 1rem; justify-content: center; }
@media (min-width: 640px) { .contact-cards { flex-direction: row; } }

.contact-card {
  background: rgba(18,18,18,.72); border: 1px solid rgba(237,237,237,.08);
  backdrop-filter: blur(20px); text-decoration: none; display: block;
  transition: border-color .4s, background .4s, transform .4s cubic-bezier(.25,.46,.45,.94);
  flex: 1; max-width: 320px; border-radius: 2px; padding: 2rem;
}
.contact-card:hover { border-color: rgba(128,0,0,.5); background: rgba(28,28,28,.88); transform: translateY(-6px); }
.contact-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.4rem; }
.contact-card-icon {
  width: 42px; height: 42px; background: rgba(128,0,0,.14); border: 1px solid rgba(128,0,0,.28);
  display: flex; align-items: center; justify-content: center; color: #800000; border-radius: 2px;
}
.contact-card-icon svg { width: 17px; height: 17px; }
.contact-card-label {
  font-family: 'DM Sans', sans-serif; font-size: .58rem; font-weight: 500;
  letter-spacing: .25em; text-transform: uppercase; color: #800000; margin-bottom: .35rem;
}
.contact-card-value {
  font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-weight: 500;
  color: #EDEDED; margin-bottom: .45rem; word-break: break-all;
}
.contact-card-hint {
  font-family: 'DM Sans', sans-serif; font-size: .73rem; color: rgba(237,237,237,.32);
}

/* ─── Footer ─────────────────────────────────────────────── */
.site-footer { background: #080808; padding: 3rem 0; border-top: 1px solid rgba(237,237,237,.055); }
.footer-inner {
  display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 1.25rem;
  text-align: center;
}
@media (min-width: 768px) {
  .footer-inner { flex-direction: row; text-align: left; }
}
.footer-brand { display: flex; flex-direction: column; gap: .35rem; }
.footer-mark { font-family: 'Bebas Neue', sans-serif; font-size: 1.7rem; letter-spacing: .15em; color: #EDEDED; }
.footer-tag { font-family: 'DM Sans', sans-serif; font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(237,237,237,.3); }
.footer-copy { font-family: 'DM Sans', sans-serif; font-size: .68rem; letter-spacing: .15em; color: rgba(237,237,237,.22); }

/* ─── Buttons ────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: .75rem;
  padding: .9rem 2.25rem; background: #800000; color: #EDEDED;
  font-family: 'DM Sans', sans-serif; font-size: .8rem; font-weight: 500;
  letter-spacing: .15em; text-transform: uppercase; text-decoration: none;
  border: 1px solid #800000; transition: background .3s, transform .2s;
  cursor: none;
}
.btn-primary:hover { background: #A00000; border-color: #A00000; transform: translateY(-2px); }
.btn-primary svg { width: 14px; height: 14px; }

.btn-outline {
  display: inline-flex; align-items: center; gap: .75rem;
  padding: .9rem 2.25rem; background: transparent; color: #EDEDED;
  font-family: 'DM Sans', sans-serif; font-size: .8rem; font-weight: 500;
  letter-spacing: .15em; text-transform: uppercase; text-decoration: none;
  border: 1px solid rgba(237,237,237,.3); transition: background .3s, border-color .3s, transform .2s;
  cursor: none;
}
.btn-outline:hover { background: rgba(237,237,237,.06); border-color: rgba(237,237,237,.6); transform: translateY(-2px); }

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 768px) {
  body { cursor: auto; }
  .cursor-dot, .cursor-ring { display: none; }
  .navbar { padding: 1.25rem 1.5rem; }
  .navbar.scrolled { padding: .875rem 1.5rem; }
  .nav-links { display: none; }
  .mobile-nav-toggle { display: flex; }

  .hero-portrait-side {
    width: 100%;
    opacity: .45;
  }
  .hero-portrait-mask {
    background: linear-gradient(
      to bottom,
      rgba(10,10,10,.5) 0%,
      rgba(10,10,10,.2) 40%,
      rgba(10,10,10,.75) 100%
    );
  }
  .hero-text { padding-top: 5rem; }
}

@media (max-width: 640px) {
  .hero-portrait-side img { object-position: center 15%; }
}

/* ─── Focus ──────────────────────────────────────────────── */
*:focus-visible { outline: 1px solid rgba(128,0,0,.6); outline-offset: 4px; }
