:root {
    --cream: #F5F0E8;
    --warm-white: #FAF8F4;
    --charcoal: #1C1C1A;
    --dark-brown: #2A2420;
    --rust: #C4622D;
    --rust-light: #D4784A;
    --sand: #B8A898;
    --sand-light: #D4C9BC;
    --text-muted: #7A7068;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--warm-white);
    color: var(--charcoal);
    overflow-x: hidden;
  }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.5rem 4rem;
    background: rgba(250,248,244,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(184,168,152,0.2);
    animation: slideDown 0.8s ease both;
  }

  @keyframes slideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }

  .logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--charcoal);
    text-decoration: none;
  }

  .logo span { color: var(--rust); }

  nav ul {
    list-style: none;
    display: flex; gap: 2.5rem;
  }

  nav ul a {
    text-decoration: none;
    color: var(--charcoal);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.2s;
  }

  nav ul a:hover { color: var(--rust); }

  .nav-cta {
    background: var(--charcoal);
    color: var(--cream) !important;
    padding: 0.65rem 1.5rem;
    border-radius: 2px;
    transition: background 0.2s !important;
  }

  .nav-cta:hover { background: var(--rust) !important; color: var(--cream) !important; }

  /* HERO */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
  }

  .hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6rem 4rem 6rem 4rem;
    position: relative;
    z-index: 2;
    animation: fadeUp 1s ease 0.2s both;
  }

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

  .hero-tag {
    display: inline-flex; align-items: center; gap: 0.6rem;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--rust);
    font-weight: 500;
    margin-bottom: 2rem;
  }

  .hero-tag::before {
    content: '';
    display: block; width: 2rem; height: 1px;
    background: var(--rust);
  }

  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.5rem, 6vw, 6rem);
    line-height: 1.0;
    font-weight: 900;
    color: var(--charcoal);
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
  }

  .hero h1 em {
    font-style: italic;
    color: var(--rust);
  }

  .hero p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 420px;
    margin-bottom: 3rem;
    font-weight: 300;
  }

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

  .btn-primary {
    background: var(--rust);
    color: #fff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: background 0.2s, transform 0.2s;
    display: inline-block;
  }

  .btn-primary:hover { background: var(--rust-light); transform: translateY(-1px); }

  .btn-outline {
    color: var(--charcoal);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--charcoal);
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
  }

  .btn-outline:hover { color: var(--rust); border-color: var(--rust); }

  .hero-stats {
    display: flex; gap: 3rem;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--sand-light);
  }

  .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--charcoal);
  }

  .stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 0.25rem;
  }

  .hero-right {
    position: relative;
    overflow: hidden;
    animation: fadeIn 1.2s ease 0.4s both;
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  .hero-img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
  }

  .hero-img-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #2A2420 0%, #3D3028 40%, #4A3A30 70%, #5A4535 100%);
    display: flex; align-items: center; justify-content: center;
    position: relative;
    overflow: hidden;
  }

  .hero-img-placeholder::before {
    content: '';
    position: absolute; inset: 0;
    background: 
      repeating-linear-gradient(
        45deg,
        transparent,
        transparent 40px,
        rgba(196,98,45,0.04) 40px,
        rgba(196,98,45,0.04) 80px
      );
  }

  .hero-img-placeholder::after {
    content: 'REFINE SPACE';
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.4em;
    color: rgba(255,255,255,0.1);
    position: absolute;
    bottom: 3rem; right: 3rem;
    writing-mode: vertical-rl;
    text-orientation: mixed;
  }

  .hero-badge {
    position: absolute;
    bottom: 3rem; left: -1.5rem;
    background: var(--rust);
    color: #fff;
    padding: 1.5rem 2rem;
    border-radius: 2px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  }

  .hero-badge strong {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    display: block;
    line-height: 1;
  }

  .hero-badge span {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.85;
  }

  /* SERVICES */
  .services {
    padding: 8rem 4rem;
    background: var(--charcoal);
    position: relative;
  }

  .services::before {
    content: 'SERVICES';
    position: absolute;
    top: 3rem; right: 4rem;
    font-family: 'Playfair Display', serif;
    font-size: 8rem;
    font-weight: 900;
    color: rgba(255,255,255,0.03);
    letter-spacing: -0.05em;
    line-height: 1;
    pointer-events: none;
  }

  .section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 5rem;
  }

  .section-tag {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--rust);
    display: flex; align-items: center; gap: 0.6rem;
    margin-bottom: 1rem;
  }

  .section-tag::before {
    content: '';
    display: block; width: 2rem; height: 1px;
    background: var(--rust);
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 4vw, 4rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--cream);
  }

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

  .section-sub {
    font-size: 0.95rem;
    color: var(--sand);
    line-height: 1.7;
    max-width: 300px;
    text-align: right;
    font-weight: 300;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
  }

  .service-card {
    background: var(--dark-brown);
    padding: 3rem 2.5rem;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
    cursor: default;
  }

  .service-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--rust);
    transition: width 0.4s ease;
  }

  .service-card:hover { background: #352A24; }
  .service-card:hover::after { width: 100%; }

  .service-icon {
    width: 3rem; height: 3rem;
    margin-bottom: 2rem;
    display: flex; align-items: center; justify-content: center;
  }

  .service-icon svg { width: 2rem; height: 2rem; stroke: var(--rust); fill: none; stroke-width: 1.5; }

  .service-num {
    position: absolute;
    top: 2rem; right: 2rem;
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255,255,255,0.04);
    line-height: 1;
  }

  .service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--cream);
    margin-bottom: 1rem;
    font-weight: 700;
  }

  .service-card p {
    font-size: 0.88rem;
    color: var(--sand);
    line-height: 1.8;
    font-weight: 300;
  }

  /* WHY US */
  .why {
    padding: 8rem 4rem;
    background: var(--cream);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
  }

  .why-visual {
    position: relative;
  }

  .why-img-main {
    width: 100%;
    aspect-ratio: 4/5;
    background: linear-gradient(160deg, #3D3028, #5A4535, #C4622D44);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
  }

  .why-img-main::before {
    content: '';
    position: absolute; inset: 0;
    background: repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 30px,
      rgba(196,98,45,0.05) 30px,
      rgba(196,98,45,0.05) 60px
    );
  }

  .why-img-accent {
    position: absolute;
    bottom: -2rem; right: -2rem;
    width: 55%;
    aspect-ratio: 1;
    background: var(--rust);
    border-radius: 2px;
    display: flex; align-items: center; justify-content: center;
    padding: 2rem;
  }

  .why-img-accent p {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: #fff;
    text-align: center;
    line-height: 1.4;
  }

  .why-img-accent strong { font-size: 2.5rem; display: block; }

  .why-content .section-tag { color: var(--rust); margin-bottom: 1rem; }
  .why-content .section-tag::before { background: var(--rust); }

  .why-content .section-title { color: var(--charcoal); margin-bottom: 1.5rem; }

  .why-content > p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 2.5rem;
    font-weight: 300;
  }

  .pillars {
    display: flex; flex-direction: column; gap: 1.5rem;
  }

  .pillar {
    display: flex; gap: 1.5rem; align-items: flex-start;
  }

  .pillar-icon {
    width: 2.5rem; height: 2.5rem; min-width: 2.5rem;
    background: var(--charcoal);
    border-radius: 2px;
    display: flex; align-items: center; justify-content: center;
  }

  .pillar-icon svg { width: 1.1rem; height: 1.1rem; stroke: var(--rust); fill: none; stroke-width: 2; }

  .pillar-text h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 0.25rem;
  }

  .pillar-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
    font-weight: 300;
  }

  /* PROCESS */
  .process {
    padding: 8rem 4rem;
    background: var(--warm-white);
  }

  .process .section-header {
    margin-bottom: 4rem;
  }

  .process .section-title { color: var(--charcoal); }
  .process .section-sub { color: var(--text-muted); }

  .process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
  }

  .process-steps::before {
    content: '';
    position: absolute;
    top: 2.5rem; left: 10%;
    width: 80%; height: 1px;
    background: linear-gradient(90deg, var(--rust), var(--sand-light));
    z-index: 0;
  }

  .process-step {
    padding: 0 2rem;
    position: relative;
    z-index: 1;
  }

  .step-dot {
    width: 5rem; height: 5rem;
    border-radius: 50%;
    background: var(--cream);
    border: 2px solid var(--sand-light);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--charcoal);
    transition: background 0.3s, border-color 0.3s;
    position: relative;
  }

  .process-step:hover .step-dot {
    background: var(--rust);
    border-color: var(--rust);
    color: #fff;
  }

  .process-step h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
  }

  .process-step p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.8;
    font-weight: 300;
  }

  /* PROJECTS */
  .projects {
    padding: 8rem 4rem;
    background: var(--charcoal);
  }

  .projects .section-title { color: var(--cream); }

  .projects-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 300px 300px;
    gap: 6px;
    margin-top: 3rem;
  }

  .project-card {
    border-radius: 2px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
  }

  .project-card:first-child { grid-row: 1 / 3; }

  .project-bg {
    width: 100%; height: 100%;
    transition: transform 0.5s ease;
  }

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

  .project-bg-1 { background: linear-gradient(160deg, #3D3028, #8B6555, #C4622D55); }
  .project-bg-2 { background: linear-gradient(200deg, #2A3028, #455045, #3D5535); }
  .project-bg-3 { background: linear-gradient(140deg, #28283D, #404065, #505090); }
  .project-bg-4 { background: linear-gradient(180deg, #3D2A2A, #654545, #8B3535); }
  .project-bg-5 { background: linear-gradient(160deg, #2D2A3D, #4A4565, #6555A0); }

  .project-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%);
    display: flex; flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s;
  }

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

  .project-overlay h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 0.25rem;
  }

  .project-overlay span {
    font-size: 0.75rem;
    color: var(--sand);
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }

  .project-label {
    position: absolute;
    top: 1.5rem; left: 1.5rem;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(8px);
    color: var(--sand-light);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.35rem 0.75rem;
    border-radius: 2px;
  }

  /* TESTIMONIALS */
  .testimonials {
    padding: 8rem 4rem;
    background: var(--cream);
  }

  .testimonials .section-title { color: var(--charcoal); }

  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
  }

  .review-card {
    background: var(--warm-white);
    padding: 2.5rem;
    border-radius: 2px;
    border-left: 3px solid var(--rust);
    transition: transform 0.3s, box-shadow 0.3s;
  }

  .review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  }

  .stars {
    color: var(--rust);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    margin-bottom: 1.25rem;
  }

  .review-card p {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--charcoal);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.5rem;
  }

  .reviewer {
    display: flex; align-items: center; gap: 1rem;
  }

  .reviewer-avatar {
    width: 2.5rem; height: 2.5rem;
    border-radius: 50%;
    background: var(--charcoal);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 0.9rem;
    color: var(--cream);
    font-weight: 700;
  }

  .reviewer-name {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--charcoal);
  }

  .reviewer-loc {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 0.1rem;
  }

  /* CTA */
  .cta-section {
    padding: 8rem 4rem;
    background: var(--charcoal);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    overflow: hidden;
  }

  .cta-section::before {
    content: '';
    position: absolute;
    top: -20%; right: -10%;
    width: 60%; aspect-ratio: 1;
    background: radial-gradient(circle, rgba(196,98,45,0.15), transparent 70%);
    pointer-events: none;
  }

  .cta-section .section-title { color: var(--cream); font-size: clamp(2.5rem, 4vw, 4.5rem); }
  .cta-section .section-title em { color: var(--rust); }

  .cta-section > p {
    color: var(--sand);
    font-size: 0.95rem;
    line-height: 1.9;
    margin-top: 1.5rem;
    font-weight: 300;
  }

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

  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }

  .form-group {
    display: flex; flex-direction: column; gap: 0.5rem;
  }

  .form-group label {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--sand);
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 2px;
    padding: 0.9rem 1.2rem;
    color: var(--cream);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
  }

  .form-group input::placeholder,
  .form-group textarea::placeholder { color: rgba(255,255,255,0.2); }

  .form-group select option { background: var(--charcoal); }

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--rust);
  }

  .form-group textarea { resize: none; height: 120px; }

  .form-submit {
    background: var(--rust);
    color: #fff;
    border: none;
    padding: 1.1rem 2.5rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 2px;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    align-self: flex-start;
  }

  .form-submit:hover { background: var(--rust-light); transform: translateY(-1px); }

  /* FOOTER */
  footer {
    background: var(--dark-brown);
    padding: 4rem 4rem 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
  }

  .footer-brand .logo { color: var(--cream); font-size: 1.3rem; }

  .footer-brand p {
    color: var(--sand);
    font-size: 0.85rem;
    line-height: 1.8;
    margin-top: 1rem;
    font-weight: 300;
    max-width: 280px;
  }

  .footer-col h5 {
    color: var(--cream);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-weight: 500;
  }

  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }

  .footer-col ul a {
    text-decoration: none;
    color: var(--sand);
    font-size: 0.875rem;
    font-weight: 300;
    transition: color 0.2s;
  }

  .footer-col ul a:hover { color: var(--rust); }

  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 2rem;
    display: flex; justify-content: space-between; align-items: center;
  }

  .footer-bottom p {
    color: var(--sand);
    font-size: 0.8rem;
    font-weight: 300;
  }

  .footer-bottom p span { color: var(--rust); }

  /* Scroll animations */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

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

  @media (max-width: 1024px) {
    nav { padding: 1.5rem 2rem; }
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-right { height: 60vw; }
    .hero-left { padding: 4rem 2rem; }
    .services, .process, .projects, .testimonials, .cta-section, .why { padding: 5rem 2rem; }
    .services-grid, .reviews-grid { grid-template-columns: 1fr 1fr; }
    .process-steps { grid-template-columns: 1fr 1fr; gap: 3rem; }
    .process-steps::before { display: none; }
    .projects-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .project-card:first-child { grid-row: auto; }
    .cta-section, .why { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    nav ul { display: none; }
  }