:root {
      --bg: #ffffff;
      --surface: #ffffff;
      --surface-soft: #faf8fc;
      --text: #111111;
      --text-soft: #4e4e57;
      --border: #e8e3ee;

      --purple-1: #af61d0;
      --purple-2: #7b48c2;
      --purple-3: #3726b0;

      --wood-light: #ead8c9;
      --wood-mid: #cda782;
      --wood-dark: #9b7356;

      --radius: 18px;
      --radius-sm: 12px;
      --max: 1180px;
      --shadow-soft: 0 18px 40px rgba(55, 38, 176, 0.08);
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      background: var(--bg);
      color: var(--text);
      font-family: Arial, Helvetica, sans-serif;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

    img {
      max-width: 100%;
      display: block;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .container {
      width: min(calc(100% - 2rem), var(--max));
      margin: 0 auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(255, 255, 255, 0.94);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--border);
    }

    .header-inner {
      min-height: 82px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 0.9rem;
      min-width: 0;
    }

    .brand-mark {
      width: 46px;
      height: 46px;
      border-radius: 14px;
      background: linear-gradient(135deg, var(--purple-1), var(--purple-3));
      color: #fff;
      display: grid;
      place-items: center;
      font-weight: 800;
      font-size: 0.95rem;
      letter-spacing: 0.04em;
      flex-shrink: 0;
    }

    .brand-text {
      display: flex;
      flex-direction: column;
      line-height: 1.05;
    }

    .brand-text strong {
      font-size: 1rem;
      font-weight: 800;
      color: var(--text);
    }

    .brand-text span {
      font-size: 0.8rem;
      color: var(--text-soft);
      font-weight: 600;
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 1.2rem;
      flex-wrap: wrap;
      width: 60%;
    }

    .nav a {
      font-size: 0.96rem;
      font-weight: 700;
      color: var(--text);
      transition: color 0.2s ease;
    }

    .nav a:hover {
      color: var(--purple-3);
    }

    .nav .shop-link {
      padding: 0.3rem 0.8rem;
      border-radius: 999px;
      background: linear-gradient(135deg, var(--purple-1), var(--purple-3));
      color: #fff;
    }

    .hero {
      padding: 5.5rem 0 3.5rem;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
      gap: 2.2rem;
      align-items: center;
    }

    h1, h2, h3 {
      margin: 0 0 1rem;
      line-height: 1.1;
      letter-spacing: -0.02em;
    }

    h1 {
      font-size: clamp(2.8rem, 6vw, 4.9rem);
      max-width: 12ch;
    }

    h2 {
      font-size: clamp(2rem, 3.4vw, 3rem);
    }

    h3 {
      font-size: 1.25rem;
    }

    .micro {
        font-size: clamp(2.8rem, 6vw, 1rem);
        line-height: 1 !important;
        display: block;
        margin-top: 2rem;
        margin-bottom: 2rem;
    }
    p {
      margin: 0 0 1rem;
      color: var(--text-soft);
    }

    .hero-copy p {
      max-width: 58ch;
      font-size: 1.08rem;
    }

    .hero-note {
      margin-top: 0.5rem;
      font-weight: 700;
      color: var(--purple-3);
    }

    .button-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.95rem;
      margin-top: 1.75rem;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 50px;
      padding: 0.95rem 1.3rem;
      border-radius: 14px;
      font-weight: 800;
      font-size: 0.97rem;
      border: 2px solid transparent;
      transition: transform 0.18s ease, border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
    }

    .btn:hover {
      transform: translateY(-1px);
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--purple-1), var(--purple-3));
      color: #fff;
      box-shadow: var(--shadow-soft);
    }

    .btn-primary:hover {
      filter: brightness(0.98);
    }

    .btn-outline {
      background: #fff;
      color: var(--text);
      border-color: var(--border);
    }

    .btn-outline:hover {
      border-color: var(--purple-3);
      color: var(--purple-3);
    }

    .hero-visual {
      position: relative;
      min-height: 520px;
      border-radius: 28px;
      overflow: hidden;
      background:
        linear-gradient(180deg, rgba(17, 17, 17, 0.08), rgba(17, 17, 17, 0.18)),
        url("walnut and purpleheart.jpeg") center / cover no-repeat,
        linear-gradient(135deg, #f3e4d8, #d5b497 55%, #9b7356);
      box-shadow: var(--shadow-soft);
    }

    .hero-card {
      position: absolute;
      left: 1.25rem;
      right: 1.25rem;
      bottom: 1.25rem;
      padding: 1rem 1.05rem;
      background: rgba(255, 255, 255, 0.92);
      border: 1px solid rgba(255, 255, 255, 0.7);
      border-radius: 18px;
      backdrop-filter: blur(8px);
    }

    .hero-card strong {
      display: block;
      margin-bottom: 0.35rem;
      color: var(--text);
      font-size: 1rem;
    }

    .hero-card p {
      margin: 0;
      color: var(--text-soft);
      font-size: 0.96rem;
    }

    .mini-points {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1rem;
      margin-top: 2.2rem;
    }

    .mini-point {
      padding: 1.1rem 1rem;
      border: 1px solid var(--border);
      border-radius: 16px;
      background: #fff;
    }

    .mini-point strong {
      display: block;
      margin-bottom: 0.35rem;
      font-size: 1rem;
      color: var(--text);
    }

    .mini-point span {
      color: var(--text-soft);
      font-size: 0.94rem;
    }

    section {
      padding: 4.75rem 0;
    }

    .section-soft {
      background: linear-gradient(180deg, #ffffff, var(--surface-soft));
    }

    .section-head {
      max-width: 64rem;
      margin-bottom: 2rem;
    }

    .section-head p {
      max-width: 60ch;
      font-size: 1.02rem;
    }

    .cards-3 {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.1rem;
    }

    .card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 1.4rem;
      transition: border-color 0.2s ease, transform 0.2s ease;
    }

    .card:hover {
      border-color: rgba(123, 72, 194, 0.35);
      transform: translateY(-2px);
    }

    .card p:last-child {
      margin-bottom: 0;
    }

    .split {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      gap: 1.3rem;
      align-items: stretch;
    }

    .panel {
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 1.7rem;
      background: #fff;
      height: 100%;
    }

    .panel p:last-child {
      margin-bottom: 0;
    }

    .process-list {
      display: grid;
      gap: 1rem;
      margin-top: 1.2rem;
    }

    .process-item {
      display: grid;
      grid-template-columns: 56px 1fr;
      gap: 1rem;
      padding-top: 1rem;
      border-top: 1px solid var(--border);
    }

    .process-item:first-child {
      padding-top: 0;
      border-top: 0;
    }

    .process-number {
      width: 56px;
      height: 56px;
      border-radius: 16px;
      background: linear-gradient(135deg, rgba(175, 97, 208, 0.12), rgba(55, 38, 176, 0.12));
      color: var(--purple-3);
      display: grid;
      place-items: center;
      font-weight: 800;
      font-size: 1.1rem;
    }

    .process-item h3 {
      margin-bottom: 0.35rem;
      font-size: 1.08rem;
    }

    .badge-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      margin-top: 1.35rem;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      min-height: 40px;
      padding: 0.65rem 0.95rem;
      border-radius: 999px;
      background: rgba(175, 97, 208, 0.08);
      color: var(--purple-3);
      border: 1px solid rgba(175, 97, 208, 0.2);
      font-weight: 800;
      font-size: 0.92rem;
    }

    .portfolio-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
    }

    .portfolio-item {
      position: relative;
      min-height: 280px;
      border-radius: 22px;
      overflow: hidden;
      background:
        linear-gradient(180deg, rgba(17, 17, 17, 0.06), rgba(17, 17, 17, 0.22)),
        linear-gradient(135deg, #f0dfd2, #d9ba9e 58%, #a57b5e);
      border: 1px solid var(--border);
    }

    .portfolio-item img {
      width: 100%;
      height: 100%;
      object-fit: none;
    }

    .portfolio-caption {
      position: absolute;
      left: 1rem;
      right: 1rem;
      bottom: 1rem;
      padding: 0.85rem 0.95rem;
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.9);
      color: var(--text);
      font-weight: 800;
      font-size: 0.95rem;
    }

    .cta {
      padding-top: 1rem;
    }

    .cta-box {
      border: 1px solid var(--border);
      border-radius: 28px;
      padding: 3rem 1.5rem;
      text-align: center;
      background:
        radial-gradient(circle at top center, rgba(175, 97, 208, 0.08), transparent 36%),
        #fff;
    }

    .cta-box p {
      max-width: 46rem;
      margin-left: auto;
      margin-right: auto;
    }

    .site-footer {
      padding: 2rem 0 3rem;
    }

    .footer-inner {
      padding-top: 1.3rem;
      border-top: 1px solid var(--border);
      display: flex;
      justify-content: space-between;
      gap: 1rem;
      flex-wrap: wrap;
      color: var(--text-soft);
      font-size: 0.95rem;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 0.8rem;
    }

    .footer-links a:hover {
      color: var(--purple-3);
    }

    .portfolio-gallery {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
    }
    
    .portfolio-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 20px;
      overflow: hidden;
      transition: transform 0.2s ease, border-color 0.2s ease;
    }
    
    .portfolio-card:hover {
      transform: translateY(-3px);
      border-color: rgba(123, 72, 194, 0.35);
    }
    
    .portfolio-card img {
      width: 100%;
      height: 280px;
      object-fit: cover;
      display: block;
    }
    
    .portfolio-copy {
      padding: 1.1rem 1.1rem 1.25rem;
    }
    
    .portfolio-copy h3 {
      margin-bottom: 0.45rem;
      font-size: 1.15rem;
    }
    
    .portfolio-copy p {
      margin: 0;
    }
    
    @media (max-width: 980px) {
      .portfolio-gallery {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    
    @media (max-width: 640px) {
      .portfolio-gallery {
        grid-template-columns: 1fr;
      }
    
      .portfolio-card img {
        height: 240px;
      }
    }

    .portfolio-images {
          display: grid;
          grid-template-columns: 1fr 1fr;
          gap: 4px;
        }
        
        .portfolio-images img {
          width: 100%;
          height: 140px;
          object-fit: cover;
          display: block;
        }

    @media (max-width: 1080px) {
      .hero-grid,
      .split {
        grid-template-columns: 1fr;
      }

      .mini-points,
      .cards-3,
      .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      h1 {
        max-width: 14ch;
      }
    }

    @media (max-width: 760px) {
      .header-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem 0;
      }

      .nav {
        gap: 0.9rem;
      }

      .hero {
        padding: 4rem 0 3rem;
      }

      .hero-visual {
        min-height: 380px;
      }

      .mini-points,
      .cards-3,
      .portfolio-grid {
        grid-template-columns: 1fr;
      }

      h1 {
        max-width: none;
        font-size: clamp(2.5rem, 10vw, 3.7rem);
      }

      section {
        padding: 3.6rem 0;
      }

      .cta-box {
        padding: 2.3rem 1.1rem;
      }
    }
    @media (max-width: 768px) {
    
      .header-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.75rem;
      }
    
      .brand {
        width: 100%;
        display: flex;
        justify-content: center;
      }
    
      .brand img {
        max-width: 220px; /* overrides your 40% */
        width: 100%;
      }
    
      .nav {
        width: 100%;
        justify-content: center;
        gap: 1rem;
      }
    
    }