:root {
      --bg: #faf8f5;
      --bg-alt: #f0ebe3;
      --ink: #1a1816;
      --ink-soft: #5c5650;
      --accent: #8b6914;
      --accent-hover: #6d5210;
      --line: rgba(26, 24, 22, 0.08);
      --shadow: 0 24px 48px rgba(26, 24, 22, 0.08);
      --radius: 2px;
      --max: 1120px;
      --header-h: 72px;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
      font-weight: 400;
      font-size: clamp(1rem, 0.95rem + 0.2vw, 1.0625rem);
      line-height: 1.65;
      color: var(--ink-soft);
      background: var(--bg);
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      height: var(--header-h);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 clamp(1.25rem, 4vw, 2.5rem);
      background: #0a0a0a;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .logo {
      display: flex;
      align-items: center;
      flex-shrink: 0;
      line-height: 0;
    }

    .logo-img {
      height: clamp(40px, 8vw, 48px);
      width: clamp(40px, 8vw, 48px);
      object-fit: contain;
      display: block;
    }

    .nav {
      display: flex;
      align-items: center;
      gap: clamp(1rem, 3vw, 2rem);
    }

    .site-header .nav a {
      font-size: 0.8125rem;
      font-weight: 500;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.72);
      transition: color 0.2s ease;
    }

    .site-header .nav a:hover {
      color: #fff;
    }

    .site-header .nav-cta {
      padding: 0.65rem 1.25rem;
      background: var(--accent);
      color: #faf8f5 !important;
      border-radius: var(--radius);
      transition: background 0.2s ease, color 0.2s ease;
    }

    .site-header .nav-cta:hover {
      background: #fff;
      color: var(--ink) !important;
    }

    .nav-toggle {
      display: none;
      background: none;
      border: none;
      padding: 0.5rem;
      cursor: pointer;
      color: #fff;
    }

    .nav-toggle span {
      display: block;
      width: 22px;
      height: 2px;
      background: currentColor;
      margin: 5px 0;
      transition: transform 0.2s ease, opacity 0.2s ease;
    }

    main {
      padding-top: var(--header-h);
    }

    .hero {
      position: relative;
      min-height: min(92vh, 900px);
      display: grid;
      align-items: end;
      color: #fff;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(105deg, rgba(26, 24, 22, 0.55) 0%, rgba(26, 24, 22, 0.25) 45%, rgba(26, 24, 22, 0.5) 100%),
        url('../images/hero-living-room.jpg') center/cover no-repeat;
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      width: 100%;
      max-width: var(--max);
      margin: 0 auto;
      padding: clamp(3rem, 8vw, 6rem) clamp(1.25rem, 4vw, 2.5rem);
    }

    .hero-kicker {
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      opacity: 0.9;
      margin-bottom: 1rem;
    }

    .hero h1 {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: clamp(2.5rem, 6vw, 4rem);
      font-weight: 600;
      line-height: 1.1;
      color: #fff;
      margin: 0 0 1.25rem;
      max-width: 14ch;
    }

    .hero-lede {
      font-size: clamp(1rem, 1.5vw, 1.125rem);
      font-weight: 300;
      max-width: 36ch;
      opacity: 0.92;
      margin: 0 0 2rem;
      line-height: 1.7;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      align-items: center;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.9rem 1.75rem;
      font-family: inherit;
      font-size: 0.8125rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      border: none;
      border-radius: var(--radius);
      cursor: pointer;
      transition: background 0.2s ease, color 0.2s ease;
    }

    .btn-primary {
      background: var(--bg);
      color: var(--ink);
    }

    .btn-primary:hover {
      background: #fff;
    }

    .btn-ghost {
      background: transparent;
      color: #fff;
      border: 1px solid rgba(255, 255, 255, 0.45);
    }

    .btn-ghost:hover {
      border-color: #fff;
      background: rgba(255, 255, 255, 0.08);
    }

    .btn-dark {
      background: var(--ink);
      color: var(--bg);
    }

    .btn-dark:hover {
      background: var(--accent);
      color: #fff;
    }

    section {
      padding: clamp(4rem, 10vw, 7rem) clamp(1.25rem, 4vw, 2.5rem);
    }

    .section-inner {
      max-width: var(--max);
      margin: 0 auto;
    }

    .section-label {
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--accent);
      margin: 0 0 0.75rem;
    }

    .section-title {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: clamp(2rem, 4vw, 2.75rem);
      font-weight: 600;
      color: var(--ink);
      line-height: 1.15;
      margin: 0 0 1.5rem;
      max-width: 20ch;
    }

    .intro {
      background: var(--bg);
    }

    .intro-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(2rem, 5vw, 4rem);
      align-items: start;
    }

    .intro-copy p {
      margin: 0 0 1.25rem;
      max-width: 42ch;
    }

    .intro-copy p:last-child {
      margin-bottom: 0;
    }

    .intro-stat {
      display: grid;
      gap: 2rem;
      padding: 2rem 0;
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      margin-top: 2rem;
    }

    .intro-stat-item strong {
      display: block;
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: clamp(2rem, 3vw, 2.5rem);
      font-weight: 600;
      color: var(--ink);
      line-height: 1;
    }

    .intro-stat-item span {
      font-size: 0.8125rem;
      color: var(--ink-soft);
    }

    .intro-visual {
      position: relative;
      aspect-ratio: 4 / 5;
      overflow: hidden;
      border-radius: var(--radius);
      box-shadow: var(--shadow);
    }

    .intro-visual img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .services {
      background: var(--bg-alt);
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: clamp(1.5rem, 3vw, 2rem);
      margin-top: 3rem;
    }

    .service-card {
      background: #fff;
      padding: 2rem 1.75rem;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      transition: box-shadow 0.25s ease;
    }

    .service-card:hover {
      box-shadow: var(--shadow);
    }

    .service-card h3 {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: 1.5rem;
      font-weight: 600;
      color: var(--ink);
      margin: 0 0 0.75rem;
    }

    .service-card p {
      margin: 0;
      font-size: 0.9375rem;
    }

    .service-card .service-scope {
      color: var(--accent);
      font-weight: 500;
      font-size: 0.875rem;
      margin-bottom: 0.75rem;
    }

    .service-card ul {
      margin: 0;
      padding: 0 0 0 1.15rem;
      font-size: 0.9375rem;
    }

    .service-card li + li {
      margin-top: 0.4rem;
    }

    .work .section-header {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-end;
      gap: 1.5rem;
      margin-bottom: 2.5rem;
    }

    .work .section-title {
      margin-bottom: 0;
    }

    .work-lede {
      margin: 0;
      max-width: 32ch;
      font-size: 0.9375rem;
    }

    .contracting-block .section-title {
      max-width: 24ch;
    }

    .contracting-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: clamp(1rem, 2vw, 1.5rem);
    }

    .contracting-card {
      position: relative;
      display: block;
      width: 100%;
      padding: 0;
      border: none;
      background: none;
      font: inherit;
      text-align: left;
      cursor: zoom-in;
      aspect-ratio: 3 / 4;
      overflow: hidden;
      border-radius: var(--radius);
      box-shadow: var(--shadow);
    }

    .contracting-card:focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: 3px;
    }

    .contracting-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

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

    .contracting-caption {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      padding: 1.25rem 1.25rem;
      background: linear-gradient(transparent, rgba(26, 24, 22, 0.82));
      color: #fff;
      text-align: left;
    }

    .contracting-caption h3,
    .contracting-caption-title {
      display: block;
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: clamp(1.05rem, 2vw, 1.25rem);
      font-weight: 600;
      margin: 0 0 0.25rem;
    }

    .contracting-caption-meta {
      display: block;
      font-size: 0.75rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      opacity: 0.88;
    }

    .interior-block {
      margin-top: clamp(4rem, 8vw, 6rem);
      padding-top: clamp(4rem, 8vw, 6rem);
      border-top: 1px solid var(--line);
    }

    .work-carousel {
      position: relative;
      margin-top: 0.5rem;
    }

    .carousel-viewport {
      overflow: hidden;
      width: 100%;
      border-radius: var(--radius);
      background: var(--bg-alt);
      box-shadow: var(--shadow);
    }

    .carousel-track {
      display: flex;
      flex-wrap: nowrap;
      transition: transform 0.45s cubic-bezier(0.25, 0.1, 0.25, 1);
      will-change: transform;
    }

    .carousel-slide {
      position: relative;
      flex-shrink: 0;
      box-sizing: border-box;
      aspect-ratio: 16 / 10;
      overflow: hidden;
      display: block;
      width: 100%;
      padding: 0;
      border: none;
      background: none;
      font: inherit;
      text-align: left;
      cursor: zoom-in;
    }

    .carousel-slide:focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: -2px;
      z-index: 1;
    }

    .carousel-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

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

    .carousel-caption {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      padding: 1.25rem 1.5rem;
      padding-right: 5rem;
      background: linear-gradient(transparent, rgba(26, 24, 22, 0.78));
      color: #fff;
      text-align: left;
    }

    .carousel-caption h3 {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: clamp(1.15rem, 2.5vw, 1.35rem);
      font-weight: 600;
      margin: 0 0 0.25rem;
    }

    .carousel-caption span {
      font-size: 0.75rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      opacity: 0.88;
    }

    .carousel-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 2;
      width: 44px;
      height: 44px;
      border: none;
      border-radius: var(--radius);
      background: rgba(250, 248, 245, 0.92);
      color: var(--ink);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 16px rgba(26, 24, 22, 0.12);
      transition: background 0.2s ease, color 0.2s ease;
    }

    .carousel-btn:hover {
      background: var(--ink);
      color: var(--bg);
    }

    .carousel-btn:focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: 2px;
    }

    .carousel-btn-prev {
      left: clamp(0.5rem, 2vw, 1rem);
    }

    .carousel-btn-next {
      right: clamp(0.5rem, 2vw, 1rem);
    }

    .carousel-btn svg {
      width: 20px;
      height: 20px;
    }

    .carousel-dots {
      display: flex;
      justify-content: center;
      gap: 0.5rem;
      margin-top: 1.25rem;
    }

    .carousel-dot {
      width: 8px;
      height: 8px;
      padding: 0;
      border: none;
      border-radius: 50%;
      background: var(--line);
      background-color: rgba(26, 24, 22, 0.2);
      cursor: pointer;
      transition: background 0.2s ease, transform 0.2s ease;
    }

    .carousel-dot:hover {
      background-color: rgba(26, 24, 22, 0.4);
    }

    .carousel-dot[aria-current="true"] {
      background-color: var(--ink);
      transform: scale(1.15);
    }

    .carousel-dot:focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: 2px;
    }

    .lightbox {
      margin: auto;
      padding: clamp(1rem, 3vw, 2rem);
      border: none;
      width: min(96vw, 1200px);
      max-height: 96vh;
      background: transparent;
      overflow: visible;
    }

    .lightbox::backdrop {
      background: rgba(10, 10, 10, 0.94);
    }

    .lightbox[open] {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .lightbox-inner {
      position: relative;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1rem;
    }

    .lightbox-figure {
      margin: 0;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1rem;
    }

    .lightbox-image {
      display: block;
      max-width: 100%;
      max-height: min(78vh, 900px);
      width: auto;
      height: auto;
      object-fit: contain;
      border-radius: var(--radius);
      box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
    }

    .lightbox-caption {
      margin: 0;
      text-align: center;
      color: #fff;
    }

    .lightbox-caption h3 {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: clamp(1.25rem, 3vw, 1.75rem);
      font-weight: 600;
      margin: 0 0 0.35rem;
    }

    .lightbox-caption span {
      font-size: 0.75rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      opacity: 0.8;
    }

    .lightbox-close,
    .lightbox-nav {
      position: fixed;
      z-index: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      border: none;
      border-radius: var(--radius);
      background: rgba(250, 248, 245, 0.92);
      color: var(--ink);
      cursor: pointer;
      transition: background 0.2s ease, color 0.2s ease;
    }

    .lightbox-close {
      top: clamp(0.75rem, 3vw, 1.25rem);
      right: clamp(0.75rem, 3vw, 1.25rem);
      width: 44px;
      height: 44px;
    }

    .lightbox-nav {
      top: 50%;
      transform: translateY(-50%);
      width: 44px;
      height: 44px;
    }

    .lightbox-prev {
      left: clamp(0.5rem, 2vw, 1.25rem);
    }

    .lightbox-next {
      right: clamp(0.5rem, 2vw, 1.25rem);
    }

    .lightbox-close:hover,
    .lightbox-nav:hover {
      background: #fff;
      color: var(--ink);
    }

    .lightbox-close:focus-visible,
    .lightbox-nav:focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: 2px;
    }

    .lightbox-nav svg,
    .lightbox-close svg {
      width: 22px;
      height: 22px;
    }

    @media (max-width: 720px) {
      .lightbox-nav {
        display: none;
      }
    }

    .process {
      background: var(--ink);
      color: rgba(255, 255, 255, 0.75);
    }

    .process .section-label {
      color: #c9a227;
    }

    .process .section-title {
      color: #fff;
    }

    .process-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: clamp(1.5rem, 3vw, 2rem);
      margin-top: 2.5rem;
    }

    .step {
      padding-top: 1.5rem;
      border-top: 1px solid rgba(255, 255, 255, 0.15);
    }

    .step-num {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: 2.5rem;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.2);
      line-height: 1;
      margin-bottom: 1rem;
    }

    .step h3 {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: 1.35rem;
      font-weight: 600;
      color: #fff;
      margin: 0 0 0.5rem;
    }

    .step p {
      margin: 0;
      font-size: 0.9375rem;
    }

    .cta {
      text-align: center;
      background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
    }

    .cta .section-inner {
      max-width: 560px;
    }

    .cta .section-title {
      max-width: none;
      margin-bottom: 1rem;
    }

    .cta p {
      margin: 0 0 2rem;
    }

    .cta-email-link {
      font-size: clamp(1.05rem, 2.2vw, 1.2rem);
      font-weight: 500;
      color: var(--accent);
      text-decoration: none;
      border-bottom: 1px solid rgba(139, 105, 20, 0.4);
      transition: color 0.2s ease, border-color 0.2s ease;
    }

    .cta-email-link:hover {
      color: var(--ink);
      border-bottom-color: var(--ink);
    }

    .site-footer {
      padding: 2.5rem clamp(1.25rem, 4vw, 2.5rem);
      border-top: 1px solid var(--line);
      background: var(--bg);
    }

    .footer-inner {
      max-width: var(--max);
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      gap: 1.5rem;
    }

    .footer-brand {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: 1.125rem;
      font-weight: 600;
      color: var(--ink);
    }

    .footer-meta {
      font-size: 0.8125rem;
      color: var(--ink-soft);
    }

    .footer-links {
      display: flex;
      gap: 1.5rem;
    }

    .footer-links a {
      font-size: 0.8125rem;
      color: var(--ink-soft);
      transition: color 0.2s ease;
    }

    .footer-links a:hover {
      color: var(--ink);
    }

    @media (max-width: 900px) {
      .intro-grid {
        grid-template-columns: 1fr;
      }

      .intro-visual {
        max-height: 420px;
        aspect-ratio: 16 / 10;
      }

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

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

      .process-steps {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 720px) {
      .nav-desktop {
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        padding: 1.25rem;
        gap: 0;
        background: #121212;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        transform: translateY(-120%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s ease;
      }

      .nav-desktop.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
      }

      .nav-desktop a {
        padding: 0.85rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      }

      .nav-desktop a:last-child {
        border-bottom: none;
        margin-top: 0.5rem;
        text-align: center;
      }

      .nav-toggle {
        display: block;
      }

      .intro-stat {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
      }

      .contracting-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
      }
    }

    @media (max-width: 520px) {
      .hero-actions {
        flex-direction: column;
        align-items: stretch;
      }

      .btn {
        width: 100%;
      }

      .process-steps {
        grid-template-columns: 1fr;
      }

      .intro-stat {
        grid-template-columns: 1fr;
      }
    }
