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

  body {
    font-family: 'DM Sans', sans-serif;
    background-color: #f5f3ee;
    color: #2a2a2a;
  }

  /* ── NAV (from promt.txt) ── */
  .topnav {
    overflow: hidden;
    background-color: #1a1a1a;
    position: sticky;
    top: 0;
    z-index: 100;
  }

  .topnav a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 20px;
    text-decoration: none;
    font-size: 15px;
    font-family: 'DM Sans', sans-serif;
    letter-spacing: 0.04em;
    transition: background 0.2s, color 0.2s;
  }

  .topnav a:hover {
    background-color: #ddd;
    color: black;
  }

  .topnav a.active {
    background-color: #c9a96e;
    color: white;
  }

  .topnav .icon { display: none; }

  @media screen and (max-width: 600px) {
    .topnav a:not(:first-child) { display: none; }
    .topnav a.icon { float: right; display: block; }
  }

  @media screen and (max-width: 600px) {
    .topnav.responsive { position: relative; }
    .topnav.responsive .icon { position: absolute; right: 0; top: 0; }
    .topnav.responsive a { float: none; display: block; text-align: left; }
  }

  /* ── GRID SYSTEM (from promt.txt) ── */
  .grid-item {
    padding: 10px;
  }

  .row-1, .row-2, .row-3, .row-4 {
    display: grid;
  }

  @media screen and (min-width: 768px) {
    .row-1 { grid-template-columns: 1fr; }
    .row-2 { grid-template-columns: 1fr 1fr; }
    .row-3 { grid-template-columns: 1fr 1fr 1fr; }
    .row-4 { grid-template-columns: 1fr 1fr 1fr 1fr; }
    .row-5 { grid-template-columns: 1fr 2fr 1fr 1fr; }
    .row-6 { grid-template-columns: 1fr 3fr 1fr; }
  }

  .grid-item img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
  }

  /* ── SECTIONS ── */
  section {
    padding: 60px 40px;
    max-width: 1100px;
    margin: 0 auto;
  }

  /* ── HERO ── */
  #home {
    padding: 80px 40px 60px;
    max-width: 1100px;
    margin: 0 auto;
  }

  .hero-grid {
    display: grid;
    gap: 0;
    align-items: center;
  }

  @media screen and (min-width: 768px) {
    .hero-grid {
      grid-template-columns: 1fr 1fr;
    }
  }

  .hero-text {
    padding: 40px 20px;
  }

  .hero-text .tag {
    display: inline-block;
    background: #c9a96e;
    color: #fff;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 2px;
    margin-bottom: 18px;
  }

  .hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    font-weight: 600;
    line-height: 1.15;
    color: #1a1a1a;
    margin-bottom: 18px;
  }

  .hero-text p {
    font-size: 16px;
    line-height: 1.75;
    color: #555;
    max-width: 420px;
    margin-bottom: 30px;
  }

  .btn {
    display: inline-block;
    padding: 12px 28px;
    background: #1a1a1a;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.06em;
    border-radius: 2px;
    transition: background 0.2s;
    margin-right: 12px;
  }

  .btn:hover { background: #c9a96e; }

  .btn-outline {
    background: transparent;
    color: #1a1a1a;
    border: 1.5px solid #1a1a1a;
  }

  .btn-outline:hover { background: #1a1a1a; color: #fff; }

  .hero-image-wrap {
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .profile-frame {
    width: 340px;
    height: 400px;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    box-shadow: 8px 8px 0px #c9a96e;
  }

  .profile-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
  }

  /* ── ABOUT ── */
  #about {
    background: #1a1a1a;
    color: #f5f3ee;
    padding: 70px 40px;
    max-width: 100%;
  }

  .about-inner {
    max-width: 1100px;
    margin: 0 auto;
  }

  .section-label {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #c9a96e;
    margin-bottom: 12px;
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 600;
    margin-bottom: 24px;
    color: inherit;
  }

  .about-grid {
    display: grid;
    gap: 0;
  }

  @media screen and (min-width: 768px) {
    .about-grid { grid-template-columns: 1fr 1fr; }
  }

  .about-text p {
    font-size: 15px;
    line-height: 1.85;
    color: #b0aba3;
    padding-right: 40px;
  }

  .about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 10px;
  }

  .stat-box {
    background: #252525;
    border-left: 3px solid #c9a96e;
    padding: 20px;
    border-radius: 2px;
  }

  .stat-box .num {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: #c9a96e;
  }

  .stat-box .lbl {
    font-size: 12px;
    letter-spacing: 0.08em;
    color: #888;
    text-transform: uppercase;
    margin-top: 4px;
  }

  /* ── SKILLS ── */
  #profile {
    padding: 70px 40px;
    max-width: 1100px;
    margin: 0 auto;
  }

  .skills-grid {
    display: grid;
    gap: 16px;
    margin-top: 30px;
  }

  @media screen and (min-width: 768px) {
    .skills-grid { grid-template-columns: 1fr 1fr 1fr; }
  }

  .skill-card {
    background: #fff;
    border: 1px solid #e8e4dc;
    border-radius: 4px;
    padding: 28px 24px;
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .skill-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }

  .skill-card .icon-wrap {
    width: 44px;
    height: 44px;
    background: #fdf5e8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
  }

  .skill-card .icon-wrap i {
    color: #c9a96e;
    font-size: 18px;
  }

  .skill-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #1a1a1a;
  }

  .skill-card p {
    font-size: 13.5px;
    line-height: 1.7;
    color: #777;
  }

  /* ── PORTFOLIO ── */
  #portfolio {
    background: #f0ede6;
    padding: 70px 40px;
  }

  .portfolio-inner {
    max-width: 1100px;
    margin: 0 auto;
  }

  .portfolio-grid {
    display: grid;
    gap: 20px;
    margin-top: 30px;
  }

  @media screen and (min-width: 768px) {
    .portfolio-grid { grid-template-columns: 1fr 1fr; }
  }

  .portfolio-card {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.2s;
  }

  .portfolio-card:hover { transform: translateY(-4px); }

  .portfolio-card .card-img {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #1a1a1a, #3a3a3a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    color: #c9a96e;
    font-size: 1.5rem;
    letter-spacing: 0.05em;
  }

  .portfolio-card .card-body {
    padding: 20px 22px;
  }

  .portfolio-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    margin-bottom: 6px;
    color: #1a1a1a;
  }

  .portfolio-card p {
    font-size: 13.5px;
    color: #888;
    line-height: 1.65;
  }

  .tag-pill {
    display: inline-block;
    background: #fdf5e8;
    color: #a07840;
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 20px;
    margin-top: 10px;
    margin-right: 5px;
  }

  /* ── CONTACT ── */
  #contact {
    padding: 70px 40px;
    max-width: 1100px;
    margin: 0 auto;
  }

  .contact-grid {
    display: grid;
    gap: 0;
    margin-top: 30px;
  }

  @media screen and (min-width: 768px) {
    .contact-grid { grid-template-columns: 1fr 1fr; }
  }

  .contact-info {
    padding: 10px 20px 10px 0;
  }

  .contact-info p {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 24px;
  }

  .contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
    font-size: 14px;
    color: #444;
  }

  .contact-item i {
    width: 36px;
    height: 36px;
    background: #fdf5e8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c9a96e;
    flex-shrink: 0;
    font-size: 14px;
  }

  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 2px;
    background: #fff;
    margin-bottom: 14px;
    outline: none;
    transition: border-color 0.2s;
  }

  .contact-form input:focus,
  .contact-form textarea:focus { border-color: #c9a96e; }

  .contact-form textarea { height: 120px; resize: vertical; }

  .contact-form button {
    width: 100%;
    padding: 13px;
    background: #1a1a1a;
    color: #fff;
    border: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    letter-spacing: 0.06em;
    cursor: pointer;
    border-radius: 2px;
    transition: background 0.2s;
  }

  .contact-form button:hover { background: #c9a96e; }

  /* ── FOOTER ── */
  footer {
    background: #111;
    color: #666;
    text-align: center;
    padding: 28px;
    font-size: 13px;
    letter-spacing: 0.04em;
  }

  footer span { color: #c9a96e; }

  .social-links {
    display: flex;
    gap: 14px;
    margin-top: 10px;
    justify-content: center;
  }

  .social-links a {
    width: 36px;
    height: 36px;
    border: 1px solid #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    text-decoration: none;
    font-size: 14px;
    transition: border-color 0.2s, color 0.2s;
  }

  .social-links a:hover { border-color: #c9a96e; color: #c9a96e; }

  /* ── SKILL BARS ── */
  .skill-bar-wrap { margin-top: 30px; }

  .skill-bar-item { margin-bottom: 18px; }

  .skill-bar-label {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #555;
    margin-bottom: 6px;
  }

  .skill-bar-track {
    height: 4px;
    background: #e8e4dc;
    border-radius: 2px;
    overflow: hidden;
  }

  .skill-bar-fill {
    height: 100%;
    background: #c9a96e;
    border-radius: 2px;
    transition: width 1s ease;
  }