  *, *::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;
  }

  /* Custom Cursor */
  .cursor {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--charcoal);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease;
    transform: translate(-50%, -50%);
  }

  .cursor-ring {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 1px solid var(--charcoal);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.4s ease, width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
    transform: translate(-50%, -50%);
    opacity: 0.5;
  }

  .cursor-ring.hover {
    width: 60px;
    height: 60px;
    opacity: 0.3;
  }

  /* 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: rgba(255,255,255,1); }
  .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-cta {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.5);
    padding: 10px 24px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
  }

  .nav-cta:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.9); }

  nav.scrolled .nav-cta { color: var(--charcoal); border-color: var(--cream); }
  nav.scrolled .nav-cta:hover { background: var(--charcoal); color: var(--white); border-color: var(--charcoal); }

  /* Hamburger */
  .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); }

  /* Hero Slider */
  .hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }

  .slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.4s ease;
  }

  .slide.active { opacity: 1; }

  .slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.08);
    transition: transform 7s ease;
  }

  .slide.active .slide-bg { transform: scale(1); }

  .slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(26, 24, 21, 0.2) 0%,
      rgba(26, 24, 21, 0.1) 40%,
      rgba(26, 24, 21, 0.55) 100%
    );
  }

  .hero-content {
    position: absolute;
    bottom: 100px;
    left: 60px;
    right: 60px;
    z-index: 10;
  }

  .hero-eyebrow {
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s var(--transition) 0.3s;
  }

  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(52px, 7vw, 100px);
    font-weight: 300;
    line-height: 0.95;
    color: var(--white);
    max-width: 700px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s var(--transition) 0.5s;
  }

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

  .slide.active .hero-eyebrow,
  .slide.active .hero-title {
    opacity: 1;
    transform: translateY(0);
  }

  .hero-meta {
    position: absolute;
    bottom: 100px;
    right: 60px;
    text-align: right;
    z-index: 10;
  }

  .hero-meta-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.15em;
    margin-bottom: 8px;
  }

  .hero-meta-label {
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
  }

  /* Slide indicators */
  .slide-indicators {
    position: absolute;
    bottom: 44px;
    left: 60px;
    display: flex;
    gap: 8px;
    z-index: 10;
  }

  .indicator {
    width: 32px;
    height: 1px;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
  }

  .indicator::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: var(--white);
    transition: width 0s ease;
  }

  .indicator.active { width: 56px; }
  .indicator.active::after {
    width: 100%;
    transition: width 6s linear;
  }

  /* Scroll hint */
  .scroll-hint {
    position: absolute;
    bottom: 40px;
    right: 60px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
  }

  .scroll-hint span {
    font-size: 9px;
    font-weight: 300;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    writing-mode: vertical-rl;
  }

  .scroll-line {
    width: 1px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
  }

  .scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.6);
    animation: scrollDown 2s ease infinite;
  }

  @keyframes scrollDown {
    0% { top: -100%; }
    100% { top: 100%; }
  }

  /* Section common */
  section { padding: 120px 60px; }

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

  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 4vw, 60px);
    font-weight: 300;
    line-height: 1.1;
    color: var(--black);
  }

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

  /* About strip */
  .about-strip {
    background: var(--off-white);
    padding: 80px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    overflow: hidden;
  }

  .about-left { flex: 0 0 auto; }

  .about-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 3.5vw, 52px);
    font-weight: 300;
    line-height: 1.15;
    max-width: 500px;
    color: var(--black);
  }

  .about-right {
    flex: 0 0 380px;
  }

  .about-text {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.9;
    color: var(--dark-stone);
    margin-bottom: 32px;
  }

  .about-link {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--charcoal);
    text-decoration: none;
    border-bottom: 1px solid var(--charcoal);
    padding-bottom: 4px;
    transition: all 0.3s ease;
  }

  .about-link:hover {
    color: var(--accent);
    border-color: var(--accent);
  }

  .stats-row {
    display: flex;
    gap: 60px;
    padding: 60px 0 0 0;
  }

  .stat h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    font-weight: 300;
    color: var(--black);
    line-height: 1;
  }

  .stat p {
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--stone);
    margin-top: 8px;
  }

  /* Projects Grid */
  .projects { background: var(--white); }

  .projects-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 60px;
  }

  .view-all-link {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--dark-stone);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s ease;
  }

  .view-all-link::after {
    content: '→';
    transition: transform 0.3s ease;
  }

  .view-all-link:hover { color: var(--black); }
  .view-all-link:hover::after { transform: translateX(4px); }

  /* Projects grid layout */
  .projects-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: 2px;
  }

  .project-card {
    position: relative;
    overflow: hidden;
    background: var(--cream);
  }

  .project-card:nth-child(1) { grid-column: 1 / 8; grid-row: 1 / 3; aspect-ratio: unset; min-height: 580px; }
  .project-card:nth-child(2) { grid-column: 8 / 13; grid-row: 1; min-height: 280px; }
  .project-card:nth-child(3) { grid-column: 8 / 13; grid-row: 2; min-height: 280px; }
  .project-card:nth-child(4) { grid-column: 1 / 5; min-height: 340px; }
  .project-card:nth-child(5) { grid-column: 5 / 9; min-height: 340px; }
  .project-card:nth-child(6) { grid-column: 9 / 13; min-height: 340px; }
  .project-card:nth-child(7) { grid-column: 1 / 7; min-height: 400px; }
  .project-card:nth-child(8) { grid-column: 7 / 13; min-height: 400px; }
  .project-card:nth-child(9) { grid-column: 1 / 5; min-height: 300px; }
  .project-card:nth-child(10) { grid-column: 5 / 13; min-height: 300px; }

  .project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    transition: transform 0.8s var(--transition);
  }

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

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

  .project-card:hover .project-overlay { opacity: 1; }

  .project-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.5s var(--transition);
  }

  .project-card:hover .project-info { transform: translateY(0); opacity: 1; }

  .project-tag {
    font-size: 9px;
    font-weight: 300;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px;
  }

  .project-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 300;
    color: var(--white);
    line-height: 1.2;
  }

  .project-loc {
    font-size: 11px;
    font-weight: 300;
    color: rgba(255,255,255,0.6);
    margin-top: 6px;
    letter-spacing: 0.08em;
  }

  /* Services */
  .services { background: var(--charcoal); }

  .services .section-label { color: var(--accent); }
  .services .section-title { color: var(--white); }
  .services .section-title em { color: var(--stone); }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin-top: 80px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.08);
  }

  .service-item {
    padding: 52px 44px;
    background: var(--charcoal);
    transition: background 0.4s ease;
    position: relative;
    overflow: hidden;
  }

  .service-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.5s ease;
  }

  .service-item:hover { background: rgba(255,255,255,0.03); }
  .service-item:hover::before { width: 100%; }

  .service-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 300;
    color: rgba(255,255,255,0.06);
    line-height: 1;
    margin-bottom: 28px;
  }

  .service-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 16px;
  }

  .service-desc {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255,255,255,0.4);
  }

  /* Process */
  .process { background: var(--off-white); }

  .process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 80px;
    border-top: 1px solid var(--cream);
  }

  .process-step {
    padding: 48px 32px 48px 0;
    border-right: 1px solid var(--cream);
    position: relative;
  }

  .process-step:last-child { border-right: none; padding-right: 0; }
  .process-step:not(:first-child) { padding-left: 32px; }

  .step-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 24px;
  }

  .step-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 300;
    color: var(--black);
    margin-bottom: 16px;
  }

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

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

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

  .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: 820px;
    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 */
  .awards {
    background: var(--off-white);
    padding: 60px;
    display: flex;
    align-items: center;
    gap: 80px;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .awards::-webkit-scrollbar { display: none; }

  .award-item {
    flex: 0 0 auto;
    text-align: center;
    padding: 0 40px;
    border-right: 1px solid var(--cream);
  }

  .award-item:last-child { border-right: none; }

  .award-year {
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px;
  }

  .award-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--black);
    margin-bottom: 6px;
  }

  .award-org {
    font-size: 11px;
    font-weight: 300;
    color: var(--stone);
    letter-spacing: 0.05em;
  }

  /* Contact CTA */
  .contact-cta {
    background: var(--white);
    padding: 160px 60px;
    display: flex;
    align-items: center;
    gap: 120px;
  }

  .cta-left { flex: 1; }

  .cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(44px, 5vw, 76px);
    font-weight: 300;
    line-height: 1;
    color: var(--black);
    margin-bottom: 32px;
  }

  .cta-sub {
    font-size: 14px;
    font-weight: 300;
    color: var(--dark-stone);
    line-height: 1.8;
    max-width: 400px;
    margin-bottom: 48px;
  }

  .btn-primary {
    display: inline-block;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--charcoal);
    padding: 18px 44px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }

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

  .btn-primary:hover::before { transform: translateX(0); }

  .btn-primary span { position: relative; z-index: 1; }

  .cta-right { flex: 0 0 460px; }

  .contact-form { display: flex; flex-direction: column; gap: 0; }

  .form-group {
    border-bottom: 1px solid var(--cream);
    position: relative;
  }

  .form-group input,
  .form-group textarea {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: var(--charcoal);
    padding: 20px 0;
    resize: none;
  }

  .form-group label {
    position: absolute;
    top: 20px;
    left: 0;
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--stone);
    transition: all 0.3s ease;
    pointer-events: none;
  }

  .form-group input:focus ~ label,
  .form-group input:not(:placeholder-shown) ~ label,
  .form-group textarea:focus ~ label,
  .form-group textarea:not(:placeholder-shown) ~ label {
    top: 4px;
    font-size: 8px;
    color: var(--accent);
  }

  .form-group::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--charcoal);
    transition: width 0.4s ease;
  }

  .form-group:focus-within::after { width: 100%; }

  .form-submit {
    margin-top: 32px;
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .form-submit button {
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--charcoal);
    border: none;
    padding: 16px 40px;
    cursor: none;
    transition: background 0.3s ease;
  }

  .form-submit button:hover { background: var(--accent); }

  .form-note {
    font-size: 11px;
    font-weight: 300;
    color: var(--stone);
  }

  /* 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 animations */
  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s var(--transition), transform 0.9s var(--transition);
  }

  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .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; }

  /* Mobile nav */
  .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); }

  /* Responsive */
  @media (max-width: 1024px) {
    nav, section { padding-left: 40px; padding-right: 40px; }
    .hero-content, .hero-meta { left: 40px; right: 40px; }
    .slide-indicators { left: 40px; }
    .scroll-hint { right: 40px; }

    .about-strip { flex-direction: column; gap: 40px; padding: 80px 40px; }
    .about-right { flex: 0 0 auto; }

    .services-grid { grid-template-columns: repeat(2, 1fr); }

    .process-steps { grid-template-columns: repeat(2, 1fr); }
    .process-step:nth-child(2) { border-right: none; }
    .process-step:nth-child(3) { border-top: 1px solid var(--cream); }
    .process-step:nth-child(4) { border-top: 1px solid var(--cream); border-right: none; }

    .contact-cta { flex-direction: column; gap: 60px; }
    .cta-right { flex: 0 0 auto; width: 100%; }

    .footer-top { grid-template-columns: 1fr 1fr; }

    .projects-grid {
      grid-template-columns: 1fr 1fr;
    }

    .project-card:nth-child(1),
    .project-card:nth-child(2),
    .project-card:nth-child(3),
    .project-card:nth-child(4),
    .project-card:nth-child(5),
    .project-card:nth-child(6),
    .project-card:nth-child(7),
    .project-card:nth-child(8),
    .project-card:nth-child(9),
    .project-card:nth-child(10) {
      grid-column: auto;
      grid-row: auto;
      min-height: 280px;
    }

    .project-card:nth-child(1),
    .project-card:nth-child(7) {
      grid-column: 1 / -1;
      min-height: 400px;
    }
  }

  @media (max-width: 768px) {
    nav { padding: 20px 24px; }
    nav.scrolled { padding: 16px 24px; }
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }

    section { padding: 80px 24px; }
    .hero-content { left: 24px; right: 24px; bottom: 80px; }
    .hero-meta { display: none; }
    .slide-indicators { left: 24px; }
    .scroll-hint { right: 24px; }

    .services-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; }
    .process-step { border-right: none; border-bottom: 1px solid var(--cream); padding: 40px 0; }
    .process-step:not(:first-child) { padding-left: 0; }

    .footer-top { grid-template-columns: 1fr 1fr; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }

    .awards { padding: 40px 24px; }
    .contact-cta { padding: 80px 24px; }
    .testimonial { padding: 100px 24px; }
    .about-strip { padding: 60px 24px; }

    footer { padding: 60px 24px 32px; }
    .footer-top { gap: 40px; }
  }


  .project-card {
    position: relative;
    overflow: hidden;
}

.project-link {
    position: absolute;
    inset: 0;            /* top:0 right:0 bottom:0 left:0 */
    z-index: 5;
    text-indent: -9999px; /* hides text if any */
}

.project-info,
.project-overlay {
    position: relative;
    z-index: 2;
}
