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

    :root {
      --bg: #F7F5F0;
      --surface: #FFFFFF;
      --surface2: #F0EDE7;
      --border: rgba(0,0,0,0.10);
      --border-md: rgba(0,0,0,0.18);
      --text: #1A1814;
      --text-muted: #6B6760;
      --text-faint: #9E9B96;
      --accent: #1A3A6B;
      --accent-light: #E8EEF7;
      --accent-mid: #2D5BA3;
      --green: #0F5E3A;
      --green-light: #E4F2EB;
      --radius: 12px;
      --radius-sm: 8px;
      --radius-pill: 999px;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      font-size: 16px;
      line-height: 1.7;
      color: var(--text);
      background: var(--bg);
    }

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

    /* ── NAV ── */
    nav {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(247,245,240,0.88);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 0.5px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 48px;
      height: 60px;
    }

    .nav-logo {
      font-size: 15px;
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 8px;
      letter-spacing: -0.01em;
    }

    .nav-logo-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--accent-mid);
    }

    .nav-links {
      display: flex;
      gap: 32px;
      list-style: none;
    }

    .nav-links a {
      font-size: 14px;
      color: var(--text-muted);
      transition: color 0.2s;
    }

    .nav-links a:hover { color: var(--text); }

    .nav-cta {
      font-size: 13px;
      font-weight: 500;
      padding: 8px 18px;
      border: 1px solid var(--border-md);
      border-radius: var(--radius-pill);
      background: transparent;
      cursor: pointer;
      transition: background 0.2s, border-color 0.2s;
      font-family: inherit;
      color: var(--text);
    }

    .nav-cta:hover {
      background: var(--surface);
      border-color: var(--accent-mid);
    }

    /* ── HERO ── */
    .hero {
      width: 100%;
      height: 100vh; 
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center;
      margin: 0 auto;
      padding: 80px 48px 64px;
      display: grid;
      grid-template-columns: 1fr 420px;
      gap: 48px;
      align-items: start;
      background-image: url(../img/hero__img.png);
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--accent-light);
      color: var(--accent);
      font-size: 12px;
      font-weight: 500;
      padding: 5px 14px;
      border-radius: var(--radius-pill);
      margin-bottom: 22px;
      letter-spacing: 0.02em;
    }

    .hero h1 {
      font-family: 'DM Serif Display', serif;
      font-size: 48px;
      line-height: 1.15;
      font-weight: 400;
      color: var(--text);
      margin-bottom: 18px;
      letter-spacing: -0.02em;
    }

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

    .hero-desc {
      font-size: 16px;
      color: var(--text-muted);
      margin-bottom: 32px;
      max-width: 480px;
    }

    .hero-actions {
      display: flex;
      gap: 12px;
      align-items: center;
      flex-wrap: wrap;
    }

    .btn-primary {
      padding: 12px 26px;
      background: var(--accent);
      color: #fff;
      border: none;
      border-radius: var(--radius-pill);
      font-size: 14px;
      font-weight: 500;
      cursor: pointer;
      font-family: inherit;
      transition: background 0.2s, transform 0.15s;
    }

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

    .btn-ghost {
      padding: 12px 22px;
      background: transparent;
      color: var(--text-muted);
      border: 1px solid var(--border-md);
      border-radius: var(--radius-pill);
      font-size: 14px;
      cursor: pointer;
      font-family: inherit;
      display: flex;
      align-items: center;
      gap: 6px;
      transition: border-color 0.2s, color 0.2s;
    }

    .btn-ghost:hover {
      color: var(--text);
      border-color: var(--text);
    }

    /* Profile card */
    .profile-card {
      background: var(--surface);
      border-radius: var(--radius);
      border: 0.5px solid var(--border);
      padding: 24px;
      position: relative;
      top: 8px;
    }

    .profile-top {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 14px;
    }

    .avatar {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: var(--accent-light);
      color: var(--accent);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      font-weight: 500;
      flex-shrink: 0;
    }

    .profile-name { font-size: 15px; font-weight: 500; }
    .profile-role { font-size: 13px; color: var(--text-muted); }

    .profile-bio {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.65;
      margin-bottom: 16px;
      padding-bottom: 16px;
      border-bottom: 0.5px solid var(--border);
    }

    .tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
    }

    .tag {
      font-size: 11px;
      padding: 4px 11px;
      background: var(--surface2);
      border: 0.5px solid var(--border);
      border-radius: var(--radius-pill);
      color: var(--text-muted);
    }

    .available-badge {
      display: flex;
      align-items: center;
      gap: 6px;
      margin-top: 14px;
      padding-top: 14px;
      border-top: 0.5px solid var(--border);
      font-size: 12px;
      color: var(--green);
    }

    .available-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--green);
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.4; }
    }

    /* ── STATS ── */
    .stats-bar {
      background: var(--surface);
      border-top: 0.5px solid var(--border);
      border-bottom: 0.5px solid var(--border);
    }

    .stats-inner {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 48px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
    }

    .stat-item {
      padding: 28px 0;
      border-right: 0.5px solid var(--border);
    }

    .stat-item:last-child { border-right: none; }
    .stat-item:not(:first-child) { padding-left: 40px; }

    .stat-num {
      font-family: 'DM Serif Display', serif;
      font-size: 36px;
      font-weight: 400;
      color: var(--text);
      line-height: 1;
      margin-bottom: 4px;
    }

    .stat-label { font-size: 13px; color: var(--text-muted); }

    /* ── SECTIONS ── */
    .section {
      max-width: 1100px;
      margin: 0 auto;
      padding: 64px 48px;
      border-bottom: 0.5px solid var(--border);
    }

    .section:last-of-type { border-bottom: none; }

    .section-header {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      margin-bottom: 32px;
    }

    .section-title {
      font-family: 'DM Serif Display', serif;
      font-size: 28px;
      font-weight: 400;
      letter-spacing: -0.02em;
    }

    .section-link {
      font-size: 13px;
      color: var(--accent-mid);
      display: flex;
      align-items: center;
      gap: 4px;
      transition: gap 0.2s;
    }

    .section-link:hover { gap: 8px; }

    /* ── SERVICES ── */
    .services {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

    .service-card {
      background: var(--surface);
      border-radius: var(--radius);
      border: 0.5px solid var(--border);
      padding: 24px;
      transition: border-color 0.2s, transform 0.2s;
    }

    .service-card:hover {
      border-color: var(--border-md);
      transform: translateY(-2px);
    }

    .service-icon {
      width: 40px;
      height: 40px;
      border-radius: var(--radius-sm);
      background: var(--accent-light);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--accent-mid);
      font-size: 20px;
      margin-bottom: 16px;
    }

    .service-card h3 {
      font-size: 15px;
      font-weight: 500;
      margin-bottom: 8px;
    }

    .service-card p {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.65;
      margin-bottom: 16px;
    }

    .service-price {
      font-size: 14px;
      font-weight: 500;
      color: var(--accent-mid);
    }

    /* ── WORKS ── */
    .works {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }

    .work-card {
      background: var(--surface);
      border-radius: var(--radius);
      border: 0.5px solid var(--border);
      overflow: hidden;
      transition: border-color 0.2s, transform 0.2s;
    }

    .work-card:hover {
      border-color: var(--border-md);
      transform: translateY(-2px);
    }

    .work-thumb {
      height: 160px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 42px;
    }

    .work-thumb.blue { 
      background-image:url(../img/kanon.png);
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }
    .work-thumb.green { 
      background-image:url(../img/fuwarii.png);
       background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }
    .work-thumb.warm { background: #FBF0E4; color: #8B5A1A; }
    .work-thumb.soft { background: #F0EAF7; color: #5A3580; }

    .work-info { padding: 18px 20px; }
    .work-cat { font-size: 11px; color: var(--text-faint); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
    .work-title { font-size: 14px; font-weight: 500; }

    /* ── TESTIMONIALS ── */
    .testimonials {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }

    .testi-card {
      background: var(--surface);
      border-radius: var(--radius);
      border: 0.5px solid var(--border);
      padding: 24px;
    }

    .stars { color: #C8962A; font-size: 14px; margin-bottom: 12px; letter-spacing: 2px; }

    .testi-text {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.7;
      margin-bottom: 16px;
      font-style: italic;
    }

    .testi-author {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .testi-avatar {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: var(--surface2);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      font-weight: 500;
      color: var(--text-muted);
      flex-shrink: 0;
    }

    .testi-name { font-size: 13px; font-weight: 500; }
    .testi-company { font-size: 12px; color: var(--text-faint); }

    /* ── CONTACT ── */
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: start;
    }

    .contact-left h2 {
      font-family: 'DM Serif Display', serif;
      font-size: 32px;
      font-weight: 400;
      margin-bottom: 14px;
      letter-spacing: -0.02em;
    }

    .contact-left p {
      font-size: 15px;
      color: var(--text-muted);
      line-height: 1.7;
      margin-bottom: 24px;
    }

    .contact-info {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .contact-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
      color: var(--text-muted);
    }

    .contact-item i { font-size: 18px; color: var(--accent-mid); }

    .contact-form {
      background: var(--surface);
      border-radius: var(--radius);
      border: 0.5px solid var(--border);
      padding: 28px;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .form-group { display: flex; flex-direction: column; gap: 5px; }

    label {
      font-size: 12px;
      font-weight: 500;
      color: var(--text-muted);
      letter-spacing: 0.02em;
    }

    input, textarea, select {
      font-family: inherit;
      font-size: 14px;
      color: var(--text);
      background: var(--bg);
      border: 0.5px solid var(--border-md);
      border-radius: var(--radius-sm);
      padding: 10px 14px;
      outline: none;
      transition: border-color 0.2s;
      width: 100%;
    }

    input:focus, textarea:focus {
      border-color: var(--accent-mid);
    }

    textarea { height: 100px; resize: vertical; }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    /* ── FOOTER ── */
    footer {
      background: var(--text);
      color: rgba(255,255,255,0.6);
      padding: 40px 48px;
    }

    .footer-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .footer-logo {
      font-size: 15px;
      font-weight: 500;
      color: #fff;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .footer-links {
      display: flex;
      gap: 24px;
      list-style: none;
    }

    .footer-links a {
      font-size: 13px;
      color: rgba(255,255,255,0.5);
      transition: color 0.2s;
    }

    .footer-links a:hover { color: #fff; }

    .footer-copy { font-size: 12px; }

    /* ── RESPONSIVE ── */
    @media (max-width: 768px) {
      nav { padding: 0 20px; }
      .nav-links { display: none; }
      .hero { grid-template-columns: 1fr; padding: 48px 20px; }
      .hero h1 { font-size: 34px; }
      .stats-inner { grid-template-columns: 1fr 1fr; }
      .stat-item:nth-child(2) { border-right: none; }
      .section { padding: 48px 20px; }
      .services { grid-template-columns: 1fr; }
      .works { grid-template-columns: 1fr; }
      .testimonials { grid-template-columns: 1fr; }
      .contact-grid { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
      footer { padding: 32px 20px; }
      .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
    }
  