/* ============================================
   FORMA ARCHITECTURE — DESIGN SYSTEM
   Noir Editorial / Luxury Refined
   ============================================ */

/* --- TOKENS --- */
:root {
  --ink:        #0F0F0F;
  --ink-2:      #1A1A1A;
  --ink-3:      #2A2A2A;
  --charcoal:   #3C3C3C;
  --stone:      #7A7570;
  --parchment:  #E8E4DF;
  --cream:      #F5F2EE;
  --warm-white: #FAF8F5;
  --gold:       #C8B8A0;
  --gold-dark:  #A89880;
  --white:      #FFFFFF;

  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'DM Sans', sans-serif;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-expo:   cubic-bezier(0.87, 0, 0.13, 1);

  --nav-h: 80px;
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--warm-white);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
button { cursor: none; border: none; background: none; font-family: inherit; }
select, input, textarea { font-family: inherit; }

/* --- CUSTOM CURSOR --- */
.cursor {
  position: fixed;
  width: 48px; height: 48px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%) scale(1);
  transition: transform 0.4s var(--ease-out), width 0.4s var(--ease-out),
              height 0.4s var(--ease-out), background 0.3s, border-color 0.3s;
  display: flex; align-items: center; justify-content: center;
  mix-blend-mode: multiply;
}
.cursor.hover {
  width: 80px; height: 80px;
  background: var(--ink);
  border-color: var(--ink);
}
.cursor.hover .cursor-text { opacity: 1; }
.cursor-text {
  color: var(--warm-white);
  font-family: var(--font-body);
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  opacity: 0;
  transition: opacity 0.2s;
  white-space: nowrap;
}

/* --- CONTAINER --- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 60px; }
@media (max-width: 768px) { .container { padding: 0 24px; } }

/* --- BUTTONS --- */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--ink); color: var(--warm-white);
  font-family: var(--font-body); font-size: 0.8rem;
  font-weight: 500; letter-spacing: 0.08em;
  padding: 16px 36px;
  border: 1px solid var(--ink);
  transition: background 0.3s, color 0.3s, transform 0.3s var(--ease-out);
  position: relative; overflow: hidden;
}
.btn-primary::after {
  content: ''; position: absolute; inset: 0;
  background: var(--gold);
  transform: translateX(-101%);
  transition: transform 0.4s var(--ease-expo);
  z-index: 0;
}
.btn-primary span, .btn-primary { position: relative; z-index: 1; }
.btn-primary:hover::after { transform: translateX(0); }
.btn-primary:hover { color: var(--ink); transform: translateY(-2px); }
.btn-primary.btn-full { width: 100%; justify-content: center; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--ink);
  font-family: var(--font-body); font-size: 0.8rem;
  font-weight: 500; letter-spacing: 0.08em;
  padding: 15px 36px;
  border: 1px solid var(--ink-3);
  transition: all 0.3s var(--ease-out);
}
.btn-outline:hover { background: var(--ink); color: var(--warm-white); }

.btn-text {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 0.8rem;
  font-weight: 500; letter-spacing: 0.06em;
  color: var(--ink); border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  transition: gap 0.3s var(--ease-out), color 0.2s;
}
.btn-text:hover { gap: 14px; color: var(--gold-dark); border-color: var(--gold-dark); }

/* --- LABELS --- */
.section-label {
  display: flex; align-items: center; gap: 16px;
  font-family: var(--font-body); font-size: 0.7rem;
  font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--stone);
  margin-bottom: 24px;
}
.label-line {
  display: block; width: 40px; height: 1px;
  background: var(--gold);
}

/* --- SECTION HEADER --- */
.section-header { margin-bottom: 72px; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 400; line-height: 1.05;
  letter-spacing: -0.01em; color: var(--ink);
}
.section-title em { font-style: italic; color: var(--charcoal); }

/* --- REVEAL ANIMATIONS --- */
[data-reveal] {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
[data-reveal].revealed { opacity: 1; transform: translateY(0); }

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.8s var(--ease-out), visibility 0.8s;
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-inner { text-align: center; }
.preloader-logo {
  font-family: var(--font-display);
  font-size: 3rem; font-weight: 300;
  letter-spacing: 0.4em; color: var(--parchment);
  margin-bottom: 32px;
}
.preloader-bar {
  width: 200px; height: 1px;
  background: var(--charcoal); margin: 0 auto 16px;
  overflow: hidden;
}
.preloader-fill {
  height: 100%; width: 0;
  background: var(--gold);
  transition: width 0.1s linear;
}
.preloader-count {
  font-family: var(--font-body); font-size: 0.7rem;
  letter-spacing: 0.2em; color: var(--stone);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; height: var(--nav-h);
  transition: background 0.4s, border-color 0.4s, transform 0.4s var(--ease-out);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(16px);
  border-bottom-color: rgba(200, 184, 160, 0.3);
}
.nav.hidden { transform: translateY(-100%); }
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 60px; height: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 400;
  letter-spacing: 0.25em; color: var(--ink);
  transition: color 0.2s;
}
.logo-f { color: var(--gold-dark); }
.nav-links {
  display: flex; align-items: center; gap: 40px;
}
.nav-link {
  font-family: var(--font-body); font-size: 0.75rem;
  font-weight: 400; letter-spacing: 0.1em;
  color: var(--charcoal); position: relative;
  transition: color 0.2s;
}
.nav-link::after {
  content: ''; position: absolute;
  bottom: -4px; left: 0; right: 0; height: 1px;
  background: var(--gold-dark);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.4s var(--ease-out);
}
.nav-link:hover { color: var(--ink); }
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-link-cta {
  padding: 10px 24px;
  border: 1px solid var(--ink-3);
  color: var(--ink);
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.nav-link-cta::after { display: none; }
.nav-link-cta:hover { background: var(--ink); color: var(--warm-white); border-color: var(--ink); }

.nav-toggle {
  display: none; flex-direction: column;
  gap: 7px; padding: 8px; cursor: none;
}
.toggle-line {
  display: block; width: 28px; height: 1px;
  background: var(--ink); transition: all 0.3s;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 999;
  background: var(--ink);
  transform: translateX(100%);
  transition: transform 0.6s var(--ease-expo);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-inner {
  height: 100%; display: flex; flex-direction: column;
  justify-content: center; padding: 60px 40px;
}
.mobile-nav { display: flex; flex-direction: column; gap: 8px; margin-bottom: 60px; }
.mobile-link {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 300; color: var(--parchment);
  letter-spacing: 0.02em; line-height: 1.2;
  display: flex; align-items: baseline; gap: 16px;
  transition: color 0.2s;
  opacity: 0; transform: translateX(40px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out), color 0.2s;
}
.mobile-menu.open .mobile-link { opacity: 1; transform: translateX(0); }
.mobile-menu.open .mobile-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.open .mobile-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.open .mobile-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.open .mobile-link:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.open .mobile-link:nth-child(5) { transition-delay: 0.3s; }
.mobile-link::before {
  content: attr(data-num);
  font-family: var(--font-body); font-size: 0.65rem;
  letter-spacing: 0.15em; color: var(--stone);
}
.mobile-link:hover { color: var(--gold); }
.mobile-footer {
  display: flex; justify-content: space-between;
  font-family: var(--font-body); font-size: 0.7rem;
  letter-spacing: 0.1em; color: var(--stone);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative; height: 100vh; min-height: 700px;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.hero-media {
  position: absolute; inset: 0; z-index: 0;
}
.hero-img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.08);
  transition: transform 8s var(--ease-out);
}
.hero-img.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(15,15,15,0.75) 0%,
    rgba(15,15,15,0.3) 50%,
    rgba(15,15,15,0.1) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  width: 100%; max-width: 1280px; margin: 0 auto;
  padding: 0 60px 80px;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 16px;
  font-family: var(--font-body); font-size: 0.7rem;
  letter-spacing: 0.2em; color: rgba(232,228,223,0.7);
  margin-bottom: 32px;
  opacity: 0; animation: fade-up 0.8s var(--ease-out) 1.8s forwards;
}
.eyebrow-line {
  display: block; width: 32px; height: 1px;
  background: var(--gold);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 7.5rem);
  font-weight: 300; line-height: 1.0;
  letter-spacing: -0.01em; color: var(--parchment);
  margin-bottom: 48px;
}
.hero-line {
  display: block; overflow: hidden;
}
.hero-line span {
  display: block;
  transform: translateY(110%);
  transition: transform 1s var(--ease-expo);
}
.hero-line.italic { font-style: italic; padding-left: 80px; }
.hero-bottom {
  display: flex; align-items: center; gap: 48px;
  opacity: 0; animation: fade-up 0.8s var(--ease-out) 2.2s forwards;
}
.hero-scroll {
  display: flex; align-items: center; gap: 16px;
  font-family: var(--font-body); font-size: 0.65rem;
  letter-spacing: 0.15em; color: rgba(232,228,223,0.6);
}
.scroll-indicator {
  width: 28px; height: 44px;
  border: 1px solid rgba(232,228,223,0.3);
  border-radius: 14px;
  display: flex; align-items: flex-start; justify-content: center;
  padding-top: 6px;
}
.scroll-dot {
  width: 4px; height: 8px; border-radius: 2px;
  background: var(--gold);
  animation: scroll-bounce 2s ease-in-out infinite;
}
@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(12px); opacity: 0.3; }
}
.hero-counter {
  position: absolute; right: 60px; bottom: 80px; z-index: 2;
  font-family: var(--font-body); font-size: 0.65rem;
  letter-spacing: 0.15em; color: rgba(232,228,223,0.5);
  display: flex; align-items: center; gap: 6px;
  opacity: 0; animation: fade-up 0.8s var(--ease-out) 2.4s forwards;
}
.counter-num { color: var(--parchment); font-size: 0.9rem; }
.hero-location {
  position: absolute; left: 60px; top: 50%; z-index: 2;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: left center;
  display: flex; align-items: center; gap: 16px;
  font-family: var(--font-body); font-size: 0.6rem;
  letter-spacing: 0.2em; color: rgba(232,228,223,0.5);
  opacity: 0; animation: fade-in 0.8s var(--ease-out) 2.6s forwards;
}

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

/* ============================================
   MARQUEE
   ============================================ */
.marquee-wrap {
  background: var(--ink); overflow: hidden;
  padding: 18px 0; border-top: 1px solid var(--ink-3);
}
.marquee {
  display: flex; gap: 48px; white-space: nowrap;
  animation: marquee-scroll 24s linear infinite;
}
.marquee span {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 300;
  letter-spacing: 0.08em; color: var(--parchment);
  flex-shrink: 0; font-style: italic;
}
.marquee-dot { color: var(--gold) !important; font-style: normal !important; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   INTRO
   ============================================ */
.intro { padding: 120px 0; background: var(--warm-white); }
.intro-inner {
  display: grid; grid-template-columns: 280px 1fr;
  gap: 80px; align-items: start;
}
.intro-text {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 300; line-height: 1.5;
  color: var(--ink); margin-bottom: 64px;
}
.intro-text em { font-style: italic; color: var(--gold-dark); }
.intro-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; border-top: 1px solid rgba(200,184,160,0.4);
}
.intro-stat {
  padding: 32px 0; border-right: 1px solid rgba(200,184,160,0.4);
  padding-right: 32px; padding-left: 0;
  display: flex; flex-direction: column; gap: 6px;
}
.intro-stat:last-child { border-right: none; }
.intro-stat:not(:first-child) { padding-left: 32px; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 300; line-height: 1; color: var(--ink);
}
.stat-suffix { font-family: var(--font-display); font-size: 1.5rem; color: var(--gold-dark); }
.stat-label {
  font-family: var(--font-body); font-size: 0.7rem;
  letter-spacing: 0.12em; color: var(--stone);
  text-transform: uppercase;
}

/* ============================================
   WORK
   ============================================ */
.work { padding: 120px 0 0; background: var(--cream); }

/* Featured Project */
.project-featured {
  display: grid; grid-template-columns: 1fr 420px;
  gap: 0; margin-bottom: 80px; align-items: stretch;
}
.project-featured-media {
  position: relative; overflow: hidden;
  aspect-ratio: 16/10;
}
.project-featured-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.project-featured:hover .project-featured-media img { transform: scale(1.04); }
.project-featured-overlay {
  position: absolute; inset: 0;
  background: rgba(15,15,15,0.3);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.4s;
}
.project-featured:hover .project-featured-overlay { opacity: 1; }
.project-view-btn {
  display: flex; align-items: center; gap: 10px;
  background: var(--warm-white); color: var(--ink);
  font-family: var(--font-body); font-size: 0.75rem;
  font-weight: 500; letter-spacing: 0.1em;
  padding: 14px 28px;
  transform: translateY(10px);
  transition: transform 0.4s var(--ease-out), background 0.2s;
}
.project-featured:hover .project-view-btn { transform: translateY(0); }
.project-view-btn:hover { background: var(--gold); }

.project-featured-info {
  background: var(--ink); color: var(--parchment);
  padding: 60px 48px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.project-num {
  font-family: var(--font-body); font-size: 0.65rem;
  letter-spacing: 0.2em; color: var(--stone);
  display: block; margin-bottom: 16px;
}
.project-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300; line-height: 1.1;
  margin-bottom: 24px;
}
.project-desc {
  font-size: 0.85rem; line-height: 1.7;
  color: rgba(232,228,223,0.7); margin-bottom: 40px;
}
.project-meta {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin-bottom: 40px;
  padding: 24px 0; border-top: 1px solid var(--ink-3);
  border-bottom: 1px solid var(--ink-3);
}
.meta-item {
  display: flex; flex-direction: column; gap: 4px;
}
.meta-item span:first-child {
  font-family: var(--font-body); font-size: 0.6rem;
  letter-spacing: 0.15em; color: var(--stone); text-transform: uppercase;
}
.meta-item span:last-child { font-size: 0.85rem; color: var(--parchment); }
.project-featured-info .btn-text { color: var(--gold); border-color: var(--gold); }
.project-featured-info .btn-text:hover { color: var(--parchment); border-color: var(--parchment); }

/* Project Grid */
.project-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 20px; margin-bottom: 60px;
}
.project-card {
  position: relative; overflow: hidden;
  grid-column: span 4;
}
.project-card-tall { grid-column: span 4; grid-row: span 2; }
.project-card-wide { grid-column: span 8; }

.project-card-media {
  position: relative; width: 100%; height: 100%;
  min-height: 280px; overflow: hidden;
}
.project-card-tall .project-card-media { min-height: 580px; }
.project-card-wide .project-card-media { min-height: 280px; }
.project-card-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.project-card:hover .project-card-media img { transform: scale(1.06); }
.project-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,15,15,0.7) 0%, transparent 60%);
}
.project-card-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px; z-index: 2;
  transform: translateY(8px);
  transition: transform 0.4s var(--ease-out);
}
.project-card:hover .project-card-info { transform: translateY(0); }
.project-card-num {
  display: block; font-family: var(--font-body); font-size: 0.6rem;
  letter-spacing: 0.2em; color: var(--gold); margin-bottom: 6px;
}
.project-card-title {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 300;
  color: var(--parchment); margin-bottom: 10px; line-height: 1.2;
}
.project-card-tags {
  display: flex; gap: 8px; flex-wrap: wrap;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.4s 0.1s, transform 0.4s 0.1s var(--ease-out);
}
.project-card:hover .project-card-tags { opacity: 1; transform: translateY(0); }
.project-card-tags span {
  font-family: var(--font-body); font-size: 0.6rem;
  letter-spacing: 0.12em; color: rgba(232,228,223,0.6);
  padding: 3px 10px; border: 1px solid rgba(232,228,223,0.2);
}

.work-cta { text-align: center; padding: 40px 0 120px; }

/* ============================================
   STUDIO
   ============================================ */
.studio { background: var(--warm-white); overflow: hidden; }
.studio-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}
.studio-media {
  position: relative; overflow: hidden;
}
.studio-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.studio-media:hover .studio-img { transform: scale(1.03); }
.studio-media-caption {
  position: absolute; bottom: 24px; left: 24px;
  font-family: var(--font-body); font-size: 0.65rem;
  letter-spacing: 0.12em; color: rgba(232,228,223,0.7);
  background: rgba(15,15,15,0.5); padding: 6px 12px;
  backdrop-filter: blur(4px);
}
.studio-content {
  padding: 100px 80px;
  display: flex; flex-direction: column; justify-content: center;
}
.studio-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 300; line-height: 1.1;
  margin-bottom: 32px;
}
.studio-title em { font-style: italic; color: var(--gold-dark); }
.studio-text {
  font-size: 0.95rem; line-height: 1.8;
  color: var(--charcoal); margin-bottom: 20px;
}
.studio-text em { font-style: italic; color: var(--ink); }
.studio-team {
  display: flex; flex-direction: column; gap: 20px;
  margin: 40px 0;
  padding: 32px 0; border-top: 1px solid rgba(200,184,160,0.4);
  border-bottom: 1px solid rgba(200,184,160,0.4);
}
.team-member {
  display: flex; align-items: center; gap: 16px;
}
.team-member img {
  width: 48px; height: 48px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
  filter: grayscale(30%);
  transition: filter 0.3s;
}
.team-member:hover img { filter: grayscale(0); }
.member-name {
  display: block; font-size: 0.9rem; font-weight: 500;
  color: var(--ink); margin-bottom: 2px;
}
.member-role {
  display: block; font-family: var(--font-body); font-size: 0.7rem;
  letter-spacing: 0.1em; color: var(--stone);
}

/* ============================================
   PROCESS
   ============================================ */
.process { padding: 120px 0; background: var(--cream); }
.process-steps {
  display: flex; flex-direction: column; gap: 0;
  border-top: 1px solid rgba(200,184,160,0.4);
}
.process-step {
  display: grid; grid-template-columns: 80px 1fr 320px;
  gap: 48px; align-items: center;
  padding: 48px 0;
  border-bottom: 1px solid rgba(200,184,160,0.4);
  transition: background 0.3s;
}
.process-step:hover { background: rgba(200,184,160,0.08); }
.step-num {
  font-family: var(--font-display);
  font-size: 3rem; font-weight: 300;
  color: var(--gold); line-height: 1;
}
.step-title {
  font-family: var(--font-display);
  font-size: 1.8rem; font-weight: 300;
  margin-bottom: 12px; color: var(--ink);
}
.step-desc {
  font-size: 0.9rem; line-height: 1.7;
  color: var(--charcoal); max-width: 480px;
}
.step-img {
  aspect-ratio: 4/3; overflow: hidden;
  opacity: 0.7; transition: opacity 0.3s;
}
.process-step:hover .step-img { opacity: 1; }
.step-img img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================
   AWARDS STRIP
   ============================================ */
.awards-strip {
  background: var(--ink); padding: 48px 0;
}
.awards-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 24px;
}
.award-item { display: flex; flex-direction: column; gap: 4px; }
.award-year {
  font-family: var(--font-body); font-size: 0.6rem;
  letter-spacing: 0.2em; color: var(--gold);
}
.award-name {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 300;
  color: var(--parchment);
}
.award-divider {
  width: 1px; height: 40px;
  background: var(--ink-3);
}

/* ============================================
   JOURNAL
   ============================================ */
.journal { padding: 120px 0; background: var(--warm-white); }
.journal-grid {
  display: grid; grid-template-columns: 1fr 400px;
  gap: 40px; align-items: start;
}
.journal-card-featured { display: flex; flex-direction: column; }
.journal-card-media {
  aspect-ratio: 16/10; overflow: hidden; margin-bottom: 28px;
}
.journal-card-media img {
  transition: transform 0.7s var(--ease-out);
}
.journal-card-featured:hover .journal-card-media img { transform: scale(1.04); }
.journal-meta {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 12px;
}
.journal-cat {
  font-family: var(--font-body); font-size: 0.6rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-dark); font-weight: 500;
}
.journal-date {
  font-family: var(--font-body); font-size: 0.65rem;
  letter-spacing: 0.1em; color: var(--stone);
}
.journal-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 300; line-height: 1.2;
  margin-bottom: 16px; color: var(--ink);
}
.journal-excerpt {
  font-size: 0.9rem; line-height: 1.7;
  color: var(--charcoal); margin-bottom: 24px;
}
.journal-side { display: flex; flex-direction: column; gap: 0; }
.journal-card-small {
  display: grid; grid-template-columns: 100px 1fr;
  gap: 20px; padding: 24px 0;
  border-bottom: 1px solid rgba(200,184,160,0.4);
  align-items: start;
}
.journal-card-small:first-child { border-top: 1px solid rgba(200,184,160,0.4); }
.journal-card-small-media {
  aspect-ratio: 1; overflow: hidden;
}
.journal-card-small-media img {
  transition: transform 0.5s var(--ease-out);
}
.journal-card-small:hover .journal-card-small-media img { transform: scale(1.08); }
.journal-title-sm {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 300;
  line-height: 1.3; margin-bottom: 12px; color: var(--ink);
}

/* ============================================
   CONTACT
   ============================================ */
.contact { background: var(--cream); }
.contact-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}
.contact-content {
  background: var(--ink); color: var(--parchment);
  padding: 100px 80px;
  display: flex; flex-direction: column; justify-content: center;
}
.contact-content .section-label { color: var(--stone); }
.contact-content .label-line { background: var(--gold); }
.contact-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  font-weight: 300; line-height: 1.0;
  margin-bottom: 28px;
}
.contact-title em { font-style: italic; color: var(--gold); }
.contact-sub {
  font-size: 0.9rem; line-height: 1.7;
  color: rgba(232,228,223,0.7); margin-bottom: 48px;
}
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-detail { display: flex; flex-direction: column; gap: 4px; }
.detail-label {
  font-family: var(--font-body); font-size: 0.6rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--stone);
}
.detail-value {
  font-family: var(--font-display); font-size: 1.1rem;
  font-weight: 300; color: var(--parchment);
  transition: color 0.2s;
}
a.detail-value:hover { color: var(--gold); }

/* Contact Form */
.contact-form {
  padding: 100px 80px;
  background: var(--warm-white);
  display: flex; flex-direction: column; justify-content: center;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.form-group label {
  font-family: var(--font-body); font-size: 0.65rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--stone); font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: transparent;
  border: none; border-bottom: 1px solid rgba(200,184,160,0.6);
  padding: 12px 0; color: var(--ink);
  font-size: 0.9rem; outline: none;
  transition: border-color 0.3s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--ink); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--stone); }
.form-group textarea { resize: none; }
.form-note {
  text-align: center; font-family: var(--font-body); font-size: 0.65rem;
  letter-spacing: 0.1em; color: var(--stone); margin-top: 16px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--ink); padding: 80px 0 40px; }
.footer-top {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 80px; margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--ink-3);
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 300;
  letter-spacing: 0.3em; color: var(--parchment);
  display: block; margin-bottom: 16px;
}
.footer-tagline {
  font-family: var(--font-body); font-size: 0.75rem;
  letter-spacing: 0.1em; color: var(--stone); line-height: 1.8;
}
.footer-nav {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
}
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h4 {
  font-family: var(--font-body); font-size: 0.6rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--stone); margin-bottom: 8px;
}
.footer-col a {
  font-family: var(--font-display); font-size: 1rem;
  font-weight: 300; color: var(--parchment);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-body); font-size: 0.65rem;
  letter-spacing: 0.08em; color: var(--stone);
  flex-wrap: wrap; gap: 16px;
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { transition: color 0.2s; }
.footer-legal a:hover { color: var(--parchment); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .project-featured { grid-template-columns: 1fr; }
  .project-featured-info { padding: 48px; }
  .studio-inner { grid-template-columns: 1fr; }
  .studio-content { padding: 60px 40px; }
  .contact-inner { grid-template-columns: 1fr; }
  .contact-content { padding: 80px 40px; }
  .contact-form { padding: 80px 40px; }
  .intro-inner { grid-template-columns: 1fr; gap: 48px; }
  .intro-stats { grid-template-columns: repeat(2, 1fr); }
  .journal-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 900px) {
  .project-grid { grid-template-columns: 1fr 1fr; }
  .project-card { grid-column: span 1 !important; }
  .project-card-tall { grid-row: span 1; }
  .process-step { grid-template-columns: 60px 1fr; }
  .step-img { display: none; }
  .awards-inner { gap: 32px; }
  .award-divider { display: none; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-inner { padding: 0 24px; }
  .hero-content { padding: 0 24px 60px; }
  .hero-location { display: none; }
  .hero-counter { right: 24px; bottom: 60px; }
  .hero-line.italic { padding-left: 24px; }
  .project-grid { grid-template-columns: 1fr; }
  .intro-stats { grid-template-columns: 1fr 1fr; }
  .process-step { grid-template-columns: 1fr; gap: 16px; }
  .step-num { font-size: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-nav { grid-template-columns: repeat(2, 1fr); }
  .cursor { display: none; }
  body { cursor: auto; }
  button { cursor: pointer; }
  a { cursor: pointer; }
}

@media (max-width: 480px) {
  .intro-stats { grid-template-columns: 1fr; }
  .footer-nav { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-bottom { flex-direction: column; align-items: flex-start; gap: 24px; }
}