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

  :root {
    --white: #fafaf8;
    --off-white: #f2f0ec;
    --cream: #e8e4dc;
    --stone: #b8b0a4;
    --dark-stone: #6b6560;
    --charcoal: #2a2825;
    --black: #1a1815;
    --accent: #c4a882;
    --transition: cubic-bezier(0.4, 0, 0.2, 1);
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Jost', sans-serif;
    background: var(--white);
    color: var(--charcoal);
    overflow-x: hidden;
    cursor: none;
  }

  /* ── Cursor ── */
  .cursor {
    position: fixed; width: 8px; height: 8px;
    background: var(--charcoal); border-radius: 50%;
    pointer-events: none; z-index: 9999;
    transform: translate(-50%, -50%);
    transition: background 0.3s ease;
  }
  .cursor-ring {
    position: fixed; width: 36px; height: 36px;
    border: 1px solid var(--charcoal); border-radius: 50%;
    pointer-events: none; z-index: 9998; opacity: 0.5;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
  }
  .cursor-ring.hover { width: 60px; height: 60px; opacity: 0.25; }
  .cursor.light { background: var(--white); }
  .cursor-ring.light { border-color: var(--white); }

  /* ── Nav ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 28px 60px;
    display: flex; align-items: center; justify-content: space-between;
    transition: background 0.5s ease, padding 0.4s ease;
  }
  nav.scrolled {
    background: rgba(250,250,248,0.95);
    backdrop-filter: blur(12px);
    padding: 18px 60px;
    border-bottom: 1px solid var(--cream);
  }
  .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px; font-weight: 400; letter-spacing: 0.25em;
    color: var(--white); text-decoration: none;
    transition: color 0.5s ease;
  }
  nav.scrolled .nav-logo { color: var(--black); }

  .nav-links { display: flex; gap: 44px; list-style: none; }
  .nav-links a {
    font-size: 11px; font-weight: 300; letter-spacing: 0.2em;
    text-transform: uppercase; color: rgba(255,255,255,0.8);
    text-decoration: none; transition: color 0.3s ease; position: relative;
  }
  .nav-links a::after {
    content: ''; position: absolute; bottom: -3px; left: 0;
    width: 0; height: 1px; background: currentColor; transition: width 0.3s ease;
  }
  .nav-links a:hover { color: #fff; }
  .nav-links a:hover::after { width: 100%; }
  nav.scrolled .nav-links a { color: var(--dark-stone); }
  nav.scrolled .nav-links a:hover { color: var(--charcoal); }

  .nav-back {
    font-size: 10px; font-weight: 300; letter-spacing: 0.18em;
    text-transform: uppercase; color: rgba(255,255,255,0.7);
    text-decoration: none; display: flex; align-items: center; gap: 10px;
    transition: color 0.3s ease;
  }
  .nav-back::before { content: '←'; transition: transform 0.3s ease; }
  .nav-back:hover { color: var(--white); }
  .nav-back:hover::before { transform: translateX(-4px); }
  nav.scrolled .nav-back { color: var(--dark-stone); }
  nav.scrolled .nav-back:hover { color: var(--charcoal); }

  .hamburger {
    display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px;
  }
  .hamburger span { display: block; width: 24px; height: 1px; background: var(--white); transition: all 0.3s ease; }
  nav.scrolled .hamburger span { background: var(--charcoal); }

  /* ── Mobile Menu ── */
  .mobile-menu {
    position: fixed; inset: 0; background: var(--black); z-index: 90;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 40px; opacity: 0; pointer-events: none; transition: opacity 0.4s ease;
  }
  .mobile-menu.open { opacity: 1; pointer-events: all; }
  .mobile-menu a {
    font-family: 'Cormorant Garamond', serif; font-size: 44px; font-weight: 300;
    color: rgba(255,255,255,0.8); text-decoration: none; transition: color 0.3s ease;
  }
  .mobile-menu a:hover { color: var(--white); }

  /* ── Hero ── */
  .project-hero {
    position: relative; width: 100%; height: 100vh; overflow: hidden;
  }
  .hero-img {
    position: absolute; inset: 0;
    transform: scale(1.06);
    animation: heroReveal 1.8s var(--transition) forwards;
  }
  @keyframes heroReveal {
    to { transform: scale(1); }
  }
  .hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(26,24,21,0.18) 0%, rgba(26,24,21,0.08) 50%, rgba(26,24,21,0.65) 100%);
  }

  /* Reveal curtain */
  .curtain {
    position: absolute; inset: 0; background: var(--black); z-index: 5;
    transform-origin: top;
    animation: curtainLift 1.2s var(--transition) 0.2s forwards;
  }
  @keyframes curtainLift {
    to { transform: scaleY(0); }
  }

  .hero-bottom {
    position: absolute; bottom: 0; left: 0; right: 0; padding: 0 60px 60px;
    display: flex; align-items: flex-end; justify-content: space-between; z-index: 10;
  }

  .hero-label {
    font-size: 9px; font-weight: 300; letter-spacing: 0.3em;
    text-transform: uppercase; color: var(--accent); margin-bottom: 16px;
    opacity: 0; transform: translateY(16px);
    animation: fadeUp 0.8s var(--transition) 1.2s forwards;
  }
  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(56px, 7.5vw, 108px);
    font-weight: 300; line-height: 0.92; color: var(--white);
    opacity: 0; transform: translateY(24px);
    animation: fadeUp 1s var(--transition) 1.4s forwards;
  }
  .hero-title em { font-style: italic; color: rgba(255,255,255,0.65); }

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

  .hero-meta-block {
    text-align: right;
    opacity: 0;
    animation: fadeUp 0.8s var(--transition) 1.6s forwards;
  }
  .hero-meta-line {
    font-size: 11px; font-weight: 300; letter-spacing: 0.18em;
    color: rgba(255,255,255,0.55); margin-bottom: 6px;
  }
  .hero-meta-line:last-child { margin-bottom: 0; }
  .hero-meta-line strong {
    font-weight: 400; color: rgba(255,255,255,0.85); font-size: 12px;
  }

  /* Scroll indicator */
  .hero-scroll {
    position: absolute; bottom: 60px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 10px; z-index: 10;
    opacity: 0; animation: fadeUp 0.6s ease 2s forwards;
  }
  .hero-scroll span {
    font-size: 8px; letter-spacing: 0.3em; text-transform: uppercase;
    color: rgba(255,255,255,0.4); font-weight: 300;
  }
  .scroll-dot {
    width: 1px; height: 44px; background: rgba(255,255,255,0.15); position: relative; overflow: hidden;
  }
  .scroll-dot::after {
    content: ''; position: absolute; top: -100%; left: 0;
    width: 100%; height: 100%; background: rgba(255,255,255,0.5);
    animation: scrollDown 2s ease infinite 2.2s;
  }
  @keyframes scrollDown { 0% { top: -100%; } 100% { top: 100%; } }

  /* ── Project Intro ── */
  .project-intro {
    padding: 100px 60px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
    align-items: start;
    border-bottom: 1px solid var(--cream);
  }

  .intro-left {}

  .intro-index {
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px; letter-spacing: 0.1em;
    color: var(--accent); margin-bottom: 28px;
  }

  .intro-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(22px, 2.4vw, 34px); font-weight: 300;
    line-height: 1.45; color: var(--black);
  }

  .intro-desc em { font-style: italic; color: var(--dark-stone); }

  .intro-right { padding-top: 8px; }

  .intro-body {
    font-size: 14px; font-weight: 300; line-height: 1.95;
    color: var(--dark-stone); margin-bottom: 28px;
  }

  /* ── Project Specs ── */
  .specs-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--cream);
    border-left: 1px solid var(--cream);
    margin-top: 60px;
  }

  .spec {
    padding: 28px 24px;
    border-right: 1px solid var(--cream);
    border-bottom: 1px solid var(--cream);
  }

  .spec-label {
    font-size: 8px; font-weight: 400; letter-spacing: 0.28em;
    text-transform: uppercase; color: var(--stone); margin-bottom: 10px;
  }

  .spec-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px; font-weight: 400; color: var(--black);
  }

  /* ── Full-width image ── */
  .full-img {
    width: 100%; height: 75vh; overflow: hidden;
    position: relative;
  }

  .full-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 12s ease;
  }

  .full-img:hover img { transform: scale(1.03); }

  /* ── Gallery Grid ── */
  .gallery { padding: 2px; display: grid; gap: 2px; }

  .gallery-2col { grid-template-columns: 1fr 1fr; }
  .gallery-3col { grid-template-columns: 7fr 5fr; }

  .gallery-img {
    overflow: hidden; position: relative; background: var(--cream);
  }

  .gallery-img img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform 0.9s var(--transition);
  }

  .gallery-img:hover img { transform: scale(1.04); }

  .gallery-img.tall { min-height: 620px; }
  .gallery-img.mid  { min-height: 420px; }
  .gallery-img.short{ min-height: 320px; }

  /* ── Design Philosophy ── */
  .philosophy {
    padding: 120px 60px;
    background: var(--off-white);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
    align-items: center;
  }

  .phil-label {
    font-size: 9px; font-weight: 400; letter-spacing: 0.3em;
    text-transform: uppercase; color: var(--accent); margin-bottom: 20px;
  }

  .phil-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 3.5vw, 52px); font-weight: 300;
    line-height: 1.15; color: var(--black); margin-bottom: 40px;
  }

  .phil-title em { font-style: italic; color: var(--dark-stone); }

  .phil-text {
    font-size: 14px; font-weight: 300; line-height: 1.95;
    color: var(--dark-stone); margin-bottom: 20px;
  }

  .phil-right { display: flex; flex-direction: column; gap: 0; }

  .phil-point {
    padding: 32px 0;
    border-bottom: 1px solid var(--cream);
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 20px;
    align-items: start;
  }

  .phil-point:first-child { border-top: 1px solid var(--cream); }

  .phil-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px; color: var(--accent); padding-top: 2px;
    letter-spacing: 0.08em;
  }

  .phil-point-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px; font-weight: 400; color: var(--black);
    margin-bottom: 8px;
  }

  .phil-point-desc {
    font-size: 13px; font-weight: 300; line-height: 1.8;
    color: var(--dark-stone);
  }

  /* ── Materials ── */
  .materials {
    padding: 100px 60px;
    background: var(--charcoal);
  }

  .materials .section-label {
    font-size: 9px; font-weight: 400; letter-spacing: 0.3em;
    text-transform: uppercase; color: var(--accent); margin-bottom: 16px;
  }

  .materials .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 3.5vw, 52px); font-weight: 300;
    color: var(--white); margin-bottom: 64px;
  }

  .materials .section-title em { font-style: italic; color: var(--stone); }

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

  .material-swatch {
    aspect-ratio: 3/4; position: relative; overflow: hidden; cursor: none;
  }

  .material-swatch img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.8s var(--transition), filter 0.5s ease;
    filter: brightness(0.75) saturate(0.8);
  }

  .material-swatch:hover img { transform: scale(1.08); filter: brightness(0.9) saturate(1); }

  .swatch-label {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 20px 16px 16px;
    background: linear-gradient(transparent, rgba(26,24,21,0.85));
    opacity: 0; transition: opacity 0.4s ease;
  }

  .material-swatch:hover .swatch-label { opacity: 1; }

  .swatch-name {
    font-size: 11px; font-weight: 300; color: var(--white);
    letter-spacing: 0.08em; margin-bottom: 3px;
  }

  .swatch-origin {
    font-size: 9px; font-weight: 300; color: rgba(255,255,255,0.5);
    letter-spacing: 0.12em; text-transform: uppercase;
  }

  /* ── Detail images ── */
  .detail-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    padding: 2px;
  }

  .detail-img {
    overflow: hidden; background: var(--cream);
    min-height: 460px; position: relative;
  }

  .detail-img img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform 0.8s var(--transition);
  }

  .detail-img:hover img { transform: scale(1.05); }

  .detail-caption {
    position: absolute; bottom: 20px; left: 20px;
    font-size: 9px; font-weight: 300; letter-spacing: 0.22em;
    text-transform: uppercase; color: rgba(255,255,255,0.6);
    opacity: 0; transform: translateY(6px);
    transition: all 0.4s ease;
  }

  .detail-img:hover .detail-caption { opacity: 1; transform: translateY(0); }

  /* ── Testimonial ── */
  .project-quote {
    padding: 140px 60px;
    background: var(--white);
    text-align: center;
  }

  .quote-mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 120px; line-height: 0.6;
    color: var(--cream); display: block; margin-bottom: 40px;
  }

  .quote-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(22px, 3vw, 38px); font-weight: 300; font-style: italic;
    line-height: 1.5; color: var(--charcoal);
    max-width: 780px; margin: 0 auto 48px;
  }

  .quote-author {
    font-size: 11px; font-weight: 400; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--stone);
  }

  .quote-author span {
    display: inline-block; width: 30px; height: 1px;
    background: var(--cream); vertical-align: middle; margin: 0 12px;
  }

  /* ── Awards bar ── */
  .project-awards {
    background: var(--off-white);
    padding: 48px 60px;
    display: flex; align-items: center; gap: 0;
    border-top: 1px solid var(--cream); border-bottom: 1px solid var(--cream);
    overflow-x: auto;
    -ms-overflow-style: none; scrollbar-width: none;
  }
  .project-awards::-webkit-scrollbar { display: none; }

  .award-item {
    flex: 0 0 auto; padding: 0 52px;
    border-right: 1px solid var(--cream);
    text-align: center;
  }
  .award-item:first-child { padding-left: 0; }
  .award-item:last-child { border-right: none; }

  .award-year {
    font-size: 9px; font-weight: 300; letter-spacing: 0.22em;
    text-transform: uppercase; color: var(--accent); margin-bottom: 6px;
  }
  .award-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px; font-weight: 400; color: var(--black); margin-bottom: 4px;
  }
  .award-org {
    font-size: 10px; font-weight: 300; color: var(--stone); letter-spacing: 0.06em;
  }

  /* ── Next Project ── */
  .next-project {
    position: relative; height: 70vh; overflow: hidden;
    display: flex; align-items: flex-end; text-decoration: none;
  }

  .next-bg {
    position: absolute; inset: 0;
    background: url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?w=1600&auto=format&fit=crop&q=80') center/cover no-repeat;
    transition: transform 0.9s var(--transition);
  }

  .next-project:hover .next-bg { transform: scale(1.04); }

  .next-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(26,24,21,0.75) 0%, rgba(26,24,21,0.1) 60%);
    transition: background 0.5s ease;
  }

  .next-project:hover .next-overlay {
    background: linear-gradient(to top, rgba(26,24,21,0.85) 0%, rgba(26,24,21,0.2) 60%);
  }

  .next-content {
    position: relative; z-index: 5;
    padding: 60px;
    display: flex; align-items: flex-end; justify-content: space-between;
    width: 100%;
  }

  .next-eyebrow {
    font-size: 9px; font-weight: 300; letter-spacing: 0.3em;
    text-transform: uppercase; color: var(--accent); margin-bottom: 14px;
  }

  .next-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(40px, 5vw, 72px); font-weight: 300;
    line-height: 0.95; color: var(--white);
  }

  .next-title em { font-style: italic; color: rgba(255,255,255,0.65); }

  .next-arrow {
    width: 56px; height: 56px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 18px;
    transition: all 0.4s ease; flex-shrink: 0; margin-bottom: 8px;
  }

  .next-project:hover .next-arrow {
    background: var(--accent); border-color: var(--accent);
    transform: rotate(45deg);
  }

  /* ── Footer ── */
  footer {
    background: var(--black);
    padding: 80px 60px 40px;
  }
  .footer-top {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px; padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    margin-bottom: 40px;
  }
  .footer-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px; font-weight: 300; letter-spacing: 0.2em;
    color: var(--white); margin-bottom: 20px;
  }
  .footer-tagline {
    font-size: 13px; font-weight: 300; line-height: 1.8;
    color: rgba(255,255,255,0.3); max-width: 260px;
  }
  .footer-col h4 {
    font-size: 9px; font-weight: 400; letter-spacing: 0.3em;
    text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 24px;
  }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 12px; }
  .footer-col a {
    font-size: 13px; font-weight: 300;
    color: rgba(255,255,255,0.5); text-decoration: none;
    transition: color 0.3s ease; letter-spacing: 0.04em;
  }
  .footer-col a:hover { color: var(--white); }
  .footer-bottom {
    display: flex; align-items: center; justify-content: space-between;
  }
  .footer-copy {
    font-size: 11px; font-weight: 300;
    color: rgba(255,255,255,0.2); letter-spacing: 0.05em;
  }
  .social-links { display: flex; gap: 24px; }
  .social-links a {
    font-size: 9px; font-weight: 400; letter-spacing: 0.2em;
    text-transform: uppercase; color: rgba(255,255,255,0.3);
    text-decoration: none; transition: color 0.3s ease;
  }
  .social-links a:hover { color: var(--white); }

  /* ── Reveal ── */
  .reveal {
    opacity: 0; transform: translateY(36px);
    transition: opacity 0.9s var(--transition), transform 0.9s var(--transition);
  }
  .reveal.visible { opacity: 1; transform: none; }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }

  /* ── Progress bar ── */
  .progress-bar {
    position: fixed; top: 0; left: 0; height: 2px;
    background: var(--accent); z-index: 200;
    width: 0; transition: width 0.1s linear;
  }

  /* ── Responsive ── */
  @media (max-width: 1024px) {
    nav { padding: 20px 40px; }
    nav.scrolled { padding: 16px 40px; }
    .project-intro { grid-template-columns: 1fr; gap: 48px; padding: 80px 40px; }
    .philosophy { grid-template-columns: 1fr; gap: 60px; padding: 80px 40px; }
    .materials { padding: 80px 40px; }
    .materials-grid { grid-template-columns: repeat(3, 1fr); }
    .specs-row { grid-template-columns: repeat(2, 1fr); }
    .detail-strip { grid-template-columns: 1fr 1fr; }
    .detail-strip .detail-img:last-child { display: none; }
    .hero-bottom { padding: 0 40px 52px; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    footer { padding: 60px 40px 32px; }
    .next-content { padding: 40px; }
    .project-awards { padding: 40px; }
    .project-quote { padding: 100px 40px; }
  }

  @media (max-width: 768px) {
    nav { padding: 20px 24px; }
    nav.scrolled { padding: 16px 24px; }
    .nav-links, .nav-back { display: none; }
    .hamburger { display: flex; }
    .hero-bottom { flex-direction: column; align-items: flex-start; gap: 24px; padding: 0 24px 44px; }
    .hero-scroll { display: none; }
    .project-intro, .philosophy, .project-quote { padding: 64px 24px; }
    .materials { padding: 64px 24px; }
    .materials-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-2col, .gallery-3col { grid-template-columns: 1fr; }
    .specs-row { grid-template-columns: 1fr 1fr; margin-top: 40px; }
    .detail-strip { grid-template-columns: 1fr; }
    .detail-strip .detail-img:last-child { display: block; }
    .detail-img { min-height: 300px; }
    .next-content { padding: 32px 24px; flex-direction: column; align-items: flex-start; gap: 24px; }
    .project-awards { padding: 36px 24px; }
    footer { padding: 52px 24px 28px; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer-bottom { flex-direction: column; gap: 16px; }
    .gallery-img.tall { min-height: 400px; }
    .gallery-img.mid  { min-height: 320px; }
  }
