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

  :root {
    --white: #ffffff;
    --off-white: #f9f8f6;
    --light: #f2f0ec;
    --mid: #e8e4de;
    --border: #d8d3cb;
    --text-light: #9e9890;
    --text-mid: #6b6560;
    --text-dark: #1a1814;
    --accent: #c9a96e;
    --accent-dark: #a8874d;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--white);
    color: var(--text-dark);
    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.4rem 3rem;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
  }
  .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem; font-weight: 400; letter-spacing: 0.08em;
    color: var(--text-dark); text-decoration: none;
  }
  .nav-links { display: flex; gap: 2.5rem; list-style: none; }
  .nav-links a {
    font-size: 0.78rem; font-weight: 400; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--text-mid);
    text-decoration: none; transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--text-dark); }
  .nav-cta {
    font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--white);
    background: var(--text-dark); padding: 0.65rem 1.4rem;
    text-decoration: none; transition: background 0.2s;
  }
  .nav-cta:hover { background: var(--accent-dark); }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: grid; grid-template-columns: 1fr 1fr;
    padding-top: 80px;
  }
  .hero-left {
    display: flex; flex-direction: column; justify-content: center;
    padding: 6rem 4rem 6rem 3rem;
    border-right: 1px solid var(--border);
  }
  .hero-tag {
    font-size: 0.7rem; font-weight: 500; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--accent);
    margin-bottom: 2rem; display: flex; align-items: center; gap: 0.8rem;
  }
  .hero-tag::before {
    content: ''; display: block; width: 2rem; height: 1px; background: var(--accent);
  }
  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 300; line-height: 1.1;
    color: var(--text-dark); margin-bottom: 1.8rem;
  }
  .hero-title em { font-style: italic; color: var(--accent); }
  .hero-sub {
    font-size: 0.95rem; color: var(--text-mid); line-height: 1.8;
    max-width: 420px; margin-bottom: 3rem;
  }
  .hero-actions { display: flex; gap: 1rem; align-items: center; }
  .btn-primary {
    display: inline-block; padding: 0.9rem 2rem;
    background: var(--text-dark); color: var(--white);
    font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
    text-decoration: none; font-weight: 500; transition: background 0.2s;
  }
  .btn-primary:hover { background: var(--accent-dark); }
  .btn-secondary {
    font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--text-mid); text-decoration: none; font-weight: 400;
    border-bottom: 1px solid var(--border); padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
  }
  .btn-secondary:hover { color: var(--text-dark); border-color: var(--text-dark); }

  .hero-right {
    background: var(--light);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 3rem; position: relative; overflow: hidden;
  }
  .hero-right::before {
    content: 'FASHION\AWEB\ADEVELOPER';
    white-space: pre;
    font-family: 'Cormorant Garamond', serif;
    font-size: 6rem; font-weight: 300; line-height: 1;
    color: var(--mid); position: absolute; top: 3rem; right: -1rem;
    text-align: right; letter-spacing: -0.02em;
  }
  .hero-stats {
    display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
    position: relative; z-index: 1;
  }
  .stat { padding: 1.5rem; background: var(--white); border: 1px solid var(--border); }
  .stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem; font-weight: 300; color: var(--text-dark);
    line-height: 1; margin-bottom: 0.4rem;
  }
  .stat-label {
    font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--text-light);
  }

  /* ── SECTIONS ── */
  section { padding: 6rem 3rem; }
  .section-header {
    display: flex; align-items: flex-start; justify-content: space-between;
    margin-bottom: 4rem; padding-bottom: 2rem; border-bottom: 1px solid var(--border);
  }
  .section-label {
    font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--accent); font-weight: 500;
  }
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 300; line-height: 1.2;
    color: var(--text-dark); margin-top: 0.6rem;
  }

  /* ── SERVICES ── */
  .services { background: var(--off-white); }
  .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
  .service-card {
    padding: 3rem 2.5rem; border: 1px solid var(--border);
    background: var(--white); position: relative; overflow: hidden;
    transition: transform 0.3s; cursor: default;
  }
  .service-card:hover { transform: translateY(-4px); }
  .service-card::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 3px; background: var(--accent); transform: scaleX(0);
    transition: transform 0.3s; transform-origin: left;
  }
  .service-card:hover::after { transform: scaleX(1); }
  .service-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem; font-weight: 300; color: var(--mid);
    line-height: 1; margin-bottom: 1.5rem;
  }
  .service-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem; font-weight: 400; color: var(--text-dark);
    margin-bottom: 1rem;
  }
  .service-desc {
    font-size: 0.85rem; color: var(--text-mid); line-height: 1.8;
    margin-bottom: 2rem;
  }
  .service-features { list-style: none; margin-bottom: 2.5rem; }
  .service-features li {
    font-size: 0.8rem; color: var(--text-mid); padding: 0.5rem 0;
    border-bottom: 1px solid var(--light);
    display: flex; align-items: center; gap: 0.6rem;
  }
  .service-features li::before {
    content: '→'; color: var(--accent); font-size: 0.75rem;
  }
  .service-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem; font-weight: 300; color: var(--text-dark);
  }
  .service-price span {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.7rem; color: var(--text-light);
    letter-spacing: 0.1em; text-transform: uppercase;
    vertical-align: middle; margin-left: 0.4rem;
  }
  .service-card.featured { background: var(--text-dark); }
  .service-card.featured .service-num { color: rgba(255,255,255,0.1); }
  .service-card.featured .service-name { color: var(--white); }
  .service-card.featured .service-desc { color: rgba(255,255,255,0.6); }
  .service-card.featured .service-features li { color: rgba(255,255,255,0.6); border-color: rgba(255,255,255,0.1); }
  .service-card.featured .service-price { color: var(--accent); }
  .service-card.featured .service-price span { color: rgba(255,255,255,0.4); }
  .service-card.featured::after { background: var(--accent); }
  .popular-tag {
    position: absolute; top: 1.5rem; right: 1.5rem;
    font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
    background: var(--accent); color: var(--white);
    padding: 0.3rem 0.7rem; font-weight: 500;
  }

  /* ── WORK ── */
  .work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
  .work-card {
    border: 1px solid var(--border); overflow: hidden; background: var(--light);
    transition: transform 0.3s;
  }
  .work-card:hover { transform: translateY(-4px); }
  .work-preview {
    height: 220px; display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
  }
  .work-preview.dress { background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%); }
  .work-preview.fila { background: linear-gradient(135deg, #78350f 0%, #92400e 100%); }
  .work-preview.sole { background: linear-gradient(135deg, #1c1917 0%, #292524 100%); }
  .work-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem; font-weight: 300; letter-spacing: 0.15em; color: rgba(255,255,255,0.9);
  }
  .work-meta { padding: 1.5rem; }
  .work-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem; font-weight: 400; color: var(--text-dark); margin-bottom: 0.4rem;
  }
  .work-type {
    font-size: 0.72rem; color: var(--text-light);
    letter-spacing: 0.1em; text-transform: uppercase;
  }

  /* ── PROCESS ── */
  .process { background: var(--light); }
  .process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
  .process-step { padding: 2.5rem 2rem; border-right: 1px solid var(--border); }
  .process-step:last-child { border-right: none; }
  .process-step-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem; font-weight: 300; color: var(--accent); line-height: 1;
    margin-bottom: 1rem;
  }
  .process-step-title {
    font-size: 0.85rem; font-weight: 500; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--text-dark); margin-bottom: 0.8rem;
  }
  .process-step-desc { font-size: 0.85rem; color: var(--text-mid); line-height: 1.7; }

  /* ── ABOUT ── */
  .about { display: grid; grid-template-columns: 1fr 1fr; gap: 0; padding: 0; }
  .about-left {
    padding: 6rem 3rem; background: var(--text-dark); color: var(--white);
    display: flex; flex-direction: column; justify-content: center;
  }
  .about-right { padding: 6rem 3rem; display: flex; flex-direction: column; justify-content: center; }
  .about-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3vw, 2.8rem); font-weight: 300; line-height: 1.2;
    color: var(--white); margin-bottom: 1.5rem;
  }
  .about-title em { font-style: italic; color: var(--accent); }
  .about-text { font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.9; margin-bottom: 1.2rem; }
  .skills-list { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 2rem; }
  .skill-tag {
    font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
    padding: 0.4rem 0.9rem; border: 1px solid var(--border); color: var(--text-mid);
  }
  .about-right .section-label { margin-bottom: 1rem; }
  .about-right .section-title { margin-bottom: 1.5rem; }
  .about-promise { display: flex; flex-direction: column; gap: 1.2rem; margin-top: 1.5rem; }
  .promise-item { display: flex; gap: 1rem; align-items: flex-start; }
  .promise-icon { color: var(--accent); font-size: 1rem; margin-top: 0.1rem; flex-shrink: 0; }
  .promise-text { font-size: 0.88rem; color: var(--text-mid); line-height: 1.7; }
  .promise-text strong { color: var(--text-dark); font-weight: 500; }

  /* ── TESTIMONIAL ── */
  .testimonial { background: var(--off-white); text-align: center; padding: 6rem 3rem; }
  .testimonial-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 300; font-style: italic;
    color: var(--text-dark); line-height: 1.6; max-width: 700px; margin: 0 auto 2rem;
  }
  .testimonial-author {
    font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--text-light);
  }
  .testimonial-author span { color: var(--accent); }

  /* ── CTA ── */
  .cta {
    background: var(--text-dark); color: var(--white);
    text-align: center; padding: 7rem 3rem;
  }
  .cta-label {
    font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--accent); margin-bottom: 1.5rem;
  }
  .cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 300;
    color: var(--white); line-height: 1.2; margin-bottom: 1.5rem;
  }
  .cta-title em { font-style: italic; color: var(--accent); }
  .cta-sub { font-size: 0.9rem; color: rgba(255,255,255,0.55); margin-bottom: 3rem; }
  .cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
  .btn-wa {
    display: inline-flex; align-items: center; gap: 0.6rem;
    padding: 1rem 2rem; background: #25d366; color: var(--white);
    font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
    text-decoration: none; font-weight: 500; transition: background 0.2s;
  }
  .btn-wa:hover { background: #1da851; }
  .btn-light {
    display: inline-block; padding: 1rem 2rem;
    border: 1px solid rgba(255,255,255,0.3); color: var(--white);
    font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
    text-decoration: none; font-weight: 400; transition: border-color 0.2s;
  }
  .btn-light:hover { border-color: var(--accent); color: var(--accent); }

  /* ── FOOTER ── */
  footer {
    padding: 2.5rem 3rem; border-top: 1px solid var(--border);
    display: flex; align-items: center; justify-content: space-between;
  }
  .footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem; color: var(--text-dark); text-decoration: none;
  }
  .footer-text { font-size: 0.75rem; color: var(--text-light); }
  .footer-links { display: flex; gap: 1.5rem; }
  .footer-links a {
    font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--text-light); text-decoration: none; transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--text-dark); }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .hero-left > * { animation: fadeUp 0.7s ease both; }
  .hero-left > *:nth-child(1) { animation-delay: 0.1s; }
  .hero-left > *:nth-child(2) { animation-delay: 0.2s; }
  .hero-left > *:nth-child(3) { animation-delay: 0.3s; }
  .hero-left > *:nth-child(4) { animation-delay: 0.4s; }
  .hero-left > *:nth-child(5) { animation-delay: 0.5s; }

  /* ── MOBILE ── */
  @media (max-width: 900px) {
    nav { padding: 1rem 1.5rem; }
    .nav-links { display: none; }
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-left { padding: 4rem 0rem 3rem; border-right: none; border-bottom: 1px solid var(--border); }
    .hero-right { padding: 2rem 1.5rem; }
    .hero-right::before { font-size: 3.5rem; }
    .hero-stats { grid-template-columns: 1fr 1fr; }
    section { padding: 4rem 1rem; }
    .services-grid { grid-template-columns: 1fr; }
    .work-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr 1fr; }
    .process-step { border-right: none; border-bottom: 1px solid var(--border); }
    .about { grid-template-columns: 1fr; }
    .about-left, .about-right { padding: 4rem 1.5rem; }
    footer { flex-direction: column; gap: 1rem; text-align: center; }
    .section-header { flex-direction: column; gap: 0.5rem; }
  }