*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --black: #0a0a09;
    --white: #ffffff;
    --off: #fafaf8;
    --off-warm: #f4efe6;
    --muted: #888882;
    --border: rgba(10,10,9,0.08);
    --border-strong: rgba(10,10,9,0.15);
    --accent: #b67d2b;
    --accent-soft: #efe4d0;
  }
  html { scroll-behavior: smooth; }
  body {
    background: var(--white);
    color: var(--black);
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
    cursor: auto;
  }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 24px 60px;
    display: flex; justify-content: space-between; align-items: center;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 0.5px solid transparent;
    transition: border-color 0.3s, padding 0.3s;
  }
  nav.scrolled {
    border-color: var(--border);
    padding: 16px 60px;
  }
  .nav-logo {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px; font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--black); text-decoration: none;
    display: flex; align-items: center; gap: 10px;
  }
  .nav-logo span { color: var(--accent); font-weight: 300; }
  .nav-links { display: flex; gap: 40px; list-style: none; }
  .nav-links a {
    font-size: 12px; font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--muted); text-decoration: none;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--accent); }
  .nav-cta {
    font-size: 12px; font-weight: 500;
    letter-spacing: 0.05em;
    padding: 10px 22px;
    border: 0.5px solid rgba(182,125,43,0.35);
    color: var(--accent); text-decoration: none;
    border-radius: 100px;
    transition: background 0.2s, color 0.2s;
    background: rgba(239,228,208,0.35);
  }
  .nav-cta:hover { background: var(--accent); color: var(--white); }

  /* HERO */
  .hero {
    min-height: 100vh;
    display: flex; flex-direction: column;
    justify-content: flex-end;
    padding: 140px 60px 80px;
    border-bottom: 0.5px solid var(--border);
    position: relative;
    background:
      radial-gradient(circle at top right, rgba(182,125,43,0.12), transparent 26%),
      linear-gradient(180deg, #fffdf9 0%, var(--white) 54%);
  }
  .hero-label {
    font-size: 11px; font-weight: 400;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--accent); margin-bottom: 32px;
    display: flex; align-items: center; gap: 12px;
  }
  .hero-label::before { content: ''; width: 24px; height: 0.5px; background: var(--accent); }
  .hero-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(56px, 8vw, 120px);
    line-height: 1.0;
    font-weight: 400;
    letter-spacing: -0.02em;
    max-width: 900px;
    margin-bottom: 60px;
  }
  .hero-title em { font-style: italic; color: var(--accent); }
  .hero-bottom {
    display: flex; justify-content: space-between;
    align-items: flex-end; gap: 60px;
  }
  .hero-desc {
    font-size: 16px; line-height: 1.8;
    color: var(--muted); max-width: 420px;
  }
  .hero-right { display: flex; flex-direction: column; align-items: flex-end; gap: 20px; flex-shrink: 0; }
  .btn-black {
    font-size: 13px; font-weight: 500;
    letter-spacing: 0.03em;
    padding: 14px 32px;
    background: var(--accent); color: var(--white);
    text-decoration: none; border-radius: 100px;
    transition: opacity 0.2s; display: inline-block;
    white-space: nowrap;
  }
  .btn-black:hover { opacity: 0.8; }
  .btn-outline-dark {
    font-size: 13px; font-weight: 400;
    letter-spacing: 0.03em;
    padding: 13px 32px;
    border: 0.5px solid var(--border-strong);
    color: var(--black); text-decoration: none;
    border-radius: 100px;
    transition: border-color 0.2s; display: inline-block;
    white-space: nowrap;
  }
  .btn-outline-dark:hover { border-color: var(--accent); color: var(--accent); }
  .hero-stats {
    display: flex; gap: 0;
    margin-top: 80px; border-top: 0.5px solid var(--border);
  }
  .stat {
    flex: 1; padding: 32px 0;
    border-right: 0.5px solid var(--border);
  }
  .stat:last-child { border-right: none; padding-left: 40px; }
  .stat:first-child { padding-right: 40px; }
  .stat-num {
    font-family: 'DM Serif Display', serif;
    font-size: 48px; font-weight: 400;
    line-height: 1; letter-spacing: -0.02em;
    margin-bottom: 8px;
    color: var(--accent);
  }
  .stat-label { font-size: 12px; color: var(--muted); letter-spacing: 0.05em; }

  /* REVEAL */
  .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s, transform 0.8s; }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .d1 { transition-delay: 0.1s; }
  .d2 { transition-delay: 0.22s; }
  .d3 { transition-delay: 0.36s; }
  .d4 { transition-delay: 0.5s; }

  /* MARQUEE */
  .marquee-wrap {
    border-bottom: 0.5px solid var(--border);
    overflow: hidden; background: var(--off);
  }
  .marquee-inner { display: inline-flex; animation: marquee 20s linear infinite; white-space: nowrap; }
  .mi {
    font-size: 12px; font-weight: 400;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--muted); padding: 14px 32px;
  }
  .mi.hi { color: var(--accent); font-weight: 500; }
  @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

  /* SERVICES */
  .services-section { padding: 120px 60px; border-bottom: 0.5px solid var(--border); }
  .section-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 80px; }
  .section-label {
    font-size: 11px; font-weight: 400;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--accent); margin-bottom: 20px;
    display: flex; align-items: center; gap: 12px;
  }
  .section-label::before { content: ''; width: 24px; height: 0.5px; background: var(--accent); }
  .section-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 400; line-height: 1.05;
    letter-spacing: -0.02em;
  }
  .section-title em { font-style: italic; color: var(--accent); }
  .services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 0; border: 0.5px solid var(--border);
  }
  .service-card {
    padding: 48px 40px;
    border-right: 0.5px solid var(--border);
    transition: background 0.3s;
    position: relative; overflow: hidden;
  }
  .service-card:last-child { border-right: none; }
  .service-card:hover { background: #fffaf2; }
  .service-num {
    font-size: 11px; font-weight: 400;
    letter-spacing: 0.15em; color: var(--accent);
    margin-bottom: 40px;
  }
  .service-icon {
    width: 40px; height: 40px;
    border: 0.5px solid rgba(182,125,43,0.22);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; margin-bottom: 24px;
    color: var(--accent);
    background: rgba(239,228,208,0.45);
  }
  .service-name {
    font-family: 'DM Serif Display', serif;
    font-size: 26px; font-weight: 400;
    line-height: 1.2; margin-bottom: 16px;
    letter-spacing: -0.01em;
  }
  .service-desc {
    font-size: 13px; line-height: 1.8;
    color: var(--muted); margin-bottom: 32px;
  }
  .service-features { display: flex; flex-direction: column; gap: 10px; }
  .service-feature {
    display: flex; align-items: center; gap: 10px;
    font-size: 12px; color: var(--muted);
  }
  .feature-check {
    width: 16px; height: 16px;
    border: 0.5px solid rgba(182,125,43,0.22);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 8px; flex-shrink: 0; color: var(--accent);
    background: rgba(239,228,208,0.45);
  }

  /* PORTFOLIO */
  .portfolio-section { padding: 120px 60px; border-bottom: 0.5px solid var(--border); }
  .portfolio-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 2px; margin-top: 60px;
  }
  .portfolio-item {
    position: relative; overflow: hidden;
    aspect-ratio: 4/3; background: var(--off);
  }
  .portfolio-item:first-child { grid-column: span 2; aspect-ratio: 16/7; }
  .portfolio-inner {
    width: 100%; height: 100%;
    display: flex; flex-direction: column;
    justify-content: flex-end; padding: 32px;
    transition: transform 0.5s ease;
    position: relative;
  }
  .portfolio-item:hover .portfolio-inner { transform: scale(1.02); }
  .portfolio-bg {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; font-weight: 400;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: #ccc;
  }
  .portfolio-tag {
    font-size: 10px; font-weight: 500;
    letter-spacing: 0.15em; text-transform: uppercase;
    margin-bottom: 8px;
  }
  .portfolio-name {
    font-family: 'DM Serif Display', serif;
    font-size: 24px; font-weight: 400;
    letter-spacing: -0.01em;
  }
  .portfolio-item:first-child .portfolio-name { font-size: 36px; }

  /* PROCESS */
  .process-section {
    padding: 120px 60px;
    background:
      linear-gradient(180deg, rgba(244,239,230,0.85), rgba(255,255,255,1) 28%),
      var(--white);
    color: var(--black);
    border-bottom: 0.5px solid var(--border);
  }
  .process-section .section-label { color: var(--accent); }
  .process-section .section-label::before { background: var(--accent); }
  .process-section .section-title { color: var(--black); }
  .process-steps {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 0; margin-top: 80px;
    border-top: 0.5px solid var(--border);
  }
  .process-step {
    padding: 48px 40px 0 0;
    border-right: 0.5px solid var(--border);
  }
  .process-step:last-child { border-right: none; padding-right: 0; padding-left: 40px; }
  .process-step:not(:first-child):not(:last-child) { padding: 48px 40px 0; }
  .step-num {
    font-size: 11px; font-weight: 400;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 32px;
  }
  .step-name {
    font-family: 'DM Serif Display', serif;
    font-size: 24px; font-weight: 400;
    margin-bottom: 16px; color: var(--black);
    line-height: 1.2;
  }
  .step-desc { font-size: 13px; line-height: 1.8; color: var(--muted); }

  /* PRICING */
  .pricing-section { padding: 120px 60px; border-bottom: 0.5px solid var(--border); }
  .pricing-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 0; margin-top: 60px;
    border: 0.5px solid var(--border);
  }
  .pricing-card {
    padding: 48px 40px;
    border-right: 0.5px solid var(--border);
    position: relative;
  }
  .pricing-card:last-child { border-right: none; }
  .pricing-card.featured {
    background: linear-gradient(180deg, #c7913e 0%, #b67d2b 100%); color: var(--white);
    border-color: var(--accent);
  }
  .pricing-badge {
    font-size: 10px; font-weight: 500;
    letter-spacing: 0.15em; text-transform: uppercase;
    padding: 4px 12px;
    border: 0.5px solid rgba(255,255,255,0.28);
    color: rgba(255,255,255,0.72);
    border-radius: 100px;
    display: inline-block; margin-bottom: 32px;
  }
  .pricing-name {
    font-size: 11px; font-weight: 500;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--muted); margin-bottom: 16px;
  }
  .pricing-card.featured .pricing-name { color: rgba(255,255,255,0.4); }
  .pricing-price {
    font-family: 'DM Serif Display', serif;
    font-size: 56px; font-weight: 400;
    letter-spacing: -0.02em; line-height: 1;
    margin-bottom: 8px;
  }
  .pricing-card.featured .pricing-price { color: var(--white); }
  .pricing-period { font-size: 13px; color: var(--muted); margin-bottom: 40px; }
  .pricing-card.featured .pricing-period { color: rgba(255,255,255,0.4); }
  .pricing-features { display: flex; flex-direction: column; gap: 14px; margin-bottom: 40px; }
  .pricing-feature {
    display: flex; align-items: flex-start; gap: 12px;
    font-size: 13px; color: var(--muted); line-height: 1.5;
  }
  .pricing-card.featured .pricing-feature { color: rgba(255,255,255,0.6); }
  .pf-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--muted); flex-shrink: 0; margin-top: 7px; }
  .pricing-card.featured .pf-dot { background: rgba(255,255,255,0.4); }
  .pricing-btn {
    font-size: 13px; font-weight: 500;
    padding: 13px 28px; border-radius: 100px;
    text-decoration: none; display: inline-block;
    transition: all 0.2s; letter-spacing: 0.02em;
  }
  .pricing-btn-dark { border: 0.5px solid var(--border-strong); color: var(--black); }
  .pricing-btn-dark:hover { background: var(--accent); color: var(--white); border-color: var(--accent); }
  .pricing-btn-white { background: var(--white); color: var(--black); }
  .pricing-btn-white:hover { background: var(--off-warm); }

  /* ABOUT */
  .about-section {
    padding: 120px 60px;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 100px; align-items: center;
    border-bottom: 0.5px solid var(--border);
    background: linear-gradient(180deg, var(--off) 0%, #f8f4ed 100%);
  }
  .about-body { font-size: 15px; line-height: 1.9; color: var(--muted); margin-bottom: 20px; }
  .about-body strong { color: var(--accent); font-weight: 400; }
  .about-card {
    border: 0.5px solid var(--border);
    background: var(--white);
    padding: 40px;
    margin-bottom: 2px;
  }
  .about-card-title { font-size: 13px; font-weight: 500; margin-bottom: 8px; color: var(--accent); }
  .about-card-body { font-size: 13px; color: var(--muted); line-height: 1.7; }

  /* CONTACT */
  .contact-section { padding: 120px 60px; border-bottom: 0.5px solid var(--border); }
  .contact-inner {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 100px; align-items: start; margin-top: 60px;
  }
  .contact-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 400; line-height: 1.05;
    letter-spacing: -0.02em; margin-bottom: 24px;
  }
  .contact-title em { font-style: italic; }
  .contact-desc { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 40px; }
  .contact-links { display: flex; flex-direction: column; gap: 16px; }
  .contact-link {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 24px;
    border: 0.5px solid var(--border);
    text-decoration: none; color: var(--black);
    transition: border-color 0.2s, background 0.2s;
    border-radius: 8px;
  }
  .contact-link:hover { border-color: rgba(182,125,43,0.4); background: #fffaf2; }
  .contact-link-left { display: flex; flex-direction: column; gap: 4px; }
  .contact-link-title { font-size: 14px; font-weight: 500; }
  .contact-link-sub { font-size: 12px; color: var(--muted); }
  .contact-link-arrow { font-size: 18px; color: var(--accent); }
  .form-group { margin-bottom: 20px; }
  .form-label {
    font-size: 11px; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--muted); margin-bottom: 8px; display: block;
  }
  .form-input {
    width: 100%; background: var(--white);
    border: 0.5px solid var(--border-strong);
    color: var(--black); padding: 14px 16px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px; outline: none;
    transition: border-color 0.2s; border-radius: 6px;
    appearance: none;
  }
  .form-input:focus { border-color: var(--accent); }
  .form-input::placeholder { color: #ccc; }
  textarea.form-input { resize: vertical; min-height: 120px; }

  /* FOOTER */
  footer { padding: 60px; background: var(--black); color: var(--white); }
  .footer-top {
    display: flex; justify-content: space-between;
    align-items: flex-start; margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 0.5px solid rgba(255,255,255,0.08);
  }
  .footer-logo {
    font-size: 16px; font-weight: 500; margin-bottom: 12px;
    display: flex; align-items: center; gap: 10px;
  }
  .footer-tagline { font-size: 13px; color: rgba(255,255,255,0.3); max-width: 280px; line-height: 1.7; }
  .footer-nav { display: flex; gap: 80px; }
  .footer-col-title {
    font-size: 11px; font-weight: 500;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: rgba(239,228,208,0.8); margin-bottom: 20px;
  }
  .footer-links { display: flex; flex-direction: column; gap: 12px; }
  .footer-links a {
    font-size: 13px; color: rgba(255,255,255,0.5);
    text-decoration: none; transition: color 0.2s;
  }
  .footer-links a:hover { color: #e7c28a; }
  .footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
  }
  .footer-copy { font-size: 12px; color: rgba(255,255,255,0.2); }

  /* MOBILE */
  @media (max-width: 768px) {
    nav { padding: 18px 20px; }
    nav.scrolled { padding: 14px 20px; }
    .nav-links { display: none; }
    .hero { padding: 100px 20px 60px; }
    .hero-bottom { flex-direction: column; align-items: flex-start; }
    .hero-right { align-items: flex-start; flex-direction: row; flex-wrap: wrap; }
    .hero-stats { flex-wrap: wrap; }
    .stat { flex: 1 1 40%; }
    .services-section, .portfolio-section, .pricing-section, .contact-section { padding: 80px 20px; }
    .process-section { padding: 80px 20px; }
    .about-section { grid-template-columns: 1fr; padding: 80px 20px; gap: 48px; }
    .services-grid { grid-template-columns: 1fr; }
    .service-card { border-right: none; border-bottom: 0.5px solid var(--border); }
    .service-card:last-child { border-bottom: none; }
    .portfolio-grid { grid-template-columns: 1fr; }
    .portfolio-item:first-child { grid-column: span 1; aspect-ratio: 4/3; }
    .process-steps { grid-template-columns: 1fr 1fr; gap: 40px; }
    .process-step { border-right: none !important; padding: 0 !important; }
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-card { border-right: none; border-bottom: 0.5px solid var(--border); }
    .pricing-card:last-child { border-bottom: none; }
    .contact-inner { grid-template-columns: 1fr; gap: 60px; }
    footer { padding: 40px 20px; }
    .footer-top { flex-direction: column; gap: 48px; }
    .footer-nav { flex-direction: column; gap: 40px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .section-header { flex-direction: column; align-items: flex-start; gap: 24px; }
  }

  #form-success {
  animation: fadeUp 0.6s ease forwards;
}

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

#lightbox {
  opacity: 0;
  transition: opacity 0.4s ease;
}
#lightbox.active {
  opacity: 1;
}
#lightbox img {
  transform: scale(0.85);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
#lightbox.active img {
  transform: scale(1);
}
