@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Outfit:wght@300;400;500;600;700&display=swap');

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

:root {
  --bg: #f8f8f4;
  --bg-alt: #f0f0ea;
  --bg-dark: #0e1a12;
  --bg-panel: #162119;
  --text: #0e1a12;
  --text-inv: #f8f8f4;
  --muted: #6b7c6e;
  --accent: #1c4a2e;
  --accent-mid: #2d6b47;
  --accent-bright: #3a8f5c;
  --accent-light: #e4ede7;
  --border: rgba(14,26,18,0.10);
  --border-green: rgba(28,74,46,0.25);
  --radius: 3px;
  --radius-lg: 8px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Outfit', system-ui, sans-serif;
  overflow-x: hidden;
  cursor: auto;
}

a, button, input, select, textarea, label { cursor: auto; }
a, button { cursor: pointer; }

/* ── CURSOR (disabled) ───────────────────── */
.cursor-dot, .cursor-ring { display: none; }

/* ── NAV ─────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 4rem;
  height: 68px;
  background: rgba(248,248,244,0.94);
  backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  display: flex; align-items: center; gap: 0.7rem;
  text-decoration: none; color: var(--text);
}
.nav-logo-mark {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--accent); display: flex; align-items: center; justify-content: center;
  font-family: 'DM Serif Display', serif; font-size: 0.85rem; color: #fff; font-style: italic;
}
.nav-logo-name {
  font-size: 0.88rem; font-weight: 600; letter-spacing: 0.10em; text-transform: uppercase;
}
.nav-links {
  display: flex; gap: 0; list-style: none;
}
.nav-links a {
  display: block; padding: 0 1.4rem;
  color: var(--muted); text-decoration: none;
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -22px; left: 50%; right: 50%;
  height: 2px; background: var(--accent);
  transition: left 0.22s ease, right 0.22s ease;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after,
.nav-links a.active::after { left: 1.4rem; right: 1.4rem; }
.nav-links a.active { color: var(--text); }
.nav-hire {
  background: var(--accent); color: #fff;
  padding: 0.55rem 1.6rem; text-decoration: none;
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.15s;
}
.nav-hire:hover { background: var(--accent-mid); transform: translateY(-1px); }

/* ── SHARED LABEL ────────────────────────── */
.label {
  font-size: 0.66rem; letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--accent); display: flex; align-items: center; gap: 0.7rem;
  font-weight: 500;
}
.label::before {
  content: ''; display: inline-block; width: 24px; height: 1px; background: var(--accent);
}

/* ── HERO ────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  position: relative; overflow: hidden;
}
.hero-left {
  background: var(--bg-dark);
  padding: 10rem 5rem 5rem;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative; overflow: hidden;
  min-height: 100vh;
}
.hero-left::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 28px,
    rgba(255,255,255,0.018) 28px,
    rgba(255,255,255,0.018) 29px
  );
}
.hero-left-content { position: relative; z-index: 1; }
.hero-eyebrow {
  font-size: 0.66rem; letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--accent-bright); display: flex; align-items: center; gap: 0.8rem;
  font-weight: 500; margin-bottom: 2.4rem;
  animation: fadeUp 0.7s ease 0.1s both;
}
.hero-eyebrow::before {
  content: ''; display: inline-block; width: 24px; height: 1px; background: var(--accent-bright);
}
.dot-pulse {
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent-bright);
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(58,143,92,0.7); }
  100% { box-shadow: 0 0 0 12px rgba(58,143,92,0); }
}
.hero-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(3.2rem, 5.5vw, 5.8rem);
  line-height: 1.0; color: var(--text-inv);
  font-weight: 400; letter-spacing: -0.01em;
}
.hero-title em { font-style: italic; color: var(--accent-bright); }
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line span { display: block; animation: slideUp 0.75s cubic-bezier(0.16,1,0.3,1) both; }
.hero-title .line:nth-child(1) span { animation-delay: 0.2s; }
.hero-title .line:nth-child(2) span { animation-delay: 0.35s; }
.hero-title .line:nth-child(3) span { animation-delay: 0.5s; }
@keyframes slideUp {
  from { transform: translateY(105%); }
  to { transform: translateY(0); }
}
.hero-left-footer {
  position: relative; z-index: 1;
  animation: fadeUp 0.8s ease 0.9s both;
}
.hero-scroll {
  font-size: 0.66rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(248,248,244,0.35);
  display: flex; align-items: center; gap: 0.8rem;
}
.hero-scroll::after {
  content: ''; flex: 1; height: 1px; background: rgba(248,248,244,0.15); max-width: 60px;
}

.hero-right {
  background: var(--bg);
  padding: 10rem 5rem 5rem;
  display: flex; flex-direction: column; justify-content: space-between;
  border-left: 1px solid var(--border);
  animation: fadeIn 0.8s ease 0.6s both;
}
.hero-desc {
  font-size: 1.05rem; line-height: 1.85; color: var(--muted);
  max-width: 38ch; font-weight: 300;
}
.hero-desc strong { color: var(--text); font-weight: 600; }
.hero-actions { display: flex; flex-direction: column; gap: 1rem; }
.btn-primary {
  display: inline-block; background: var(--accent); color: #fff;
  padding: 1.05rem 2.4rem; text-decoration: none;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  align-self: flex-start;
}
.btn-primary:hover { background: var(--accent-mid); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(28,74,46,0.25); }
.btn-ghost {
  display: inline-block; border: 1px solid var(--border-green); color: var(--accent);
  padding: 1.05rem 2.4rem; text-decoration: none;
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
  border-radius: var(--radius);
  transition: background 0.2s, border-color 0.2s;
  align-self: flex-start;
}
.btn-ghost:hover { background: var(--accent-light); border-color: var(--accent); }

.hero-stats {
  display: flex; gap: 2.5rem; flex-wrap: wrap;
  padding-top: 3rem; border-top: 1px solid var(--border);
}
.h-stat { display: flex; flex-direction: column; gap: 0.25rem; }
.h-stat-n {
  font-family: 'DM Serif Display', serif; font-size: 2rem;
  color: var(--text); line-height: 1;
}
.h-stat-l {
  font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted);
}

/* ── SKILLS STRIP ────────────────────────── */
.skills-strip {
  background: var(--accent);
  padding: 1.1rem 0;
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
}
.skills-track {
  display: inline-block;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  will-change: transform;
}
.skills-strip:hover .skills-track { animation-play-state: paused; }
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.skill-tag {
  display: inline-block;
  font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(248,248,244,0.75); white-space: nowrap; font-weight: 500;
  margin-right: 3rem;
}
.skill-tag::after {
  content: '·';
  color: rgba(248,248,244,0.35);
  font-size: 1.2rem;
  margin-left: 3rem;
}

/* ── SERVICES SECTION ────────────────────── */
.services {
  padding: 7rem 4rem;
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 6rem; align-items: start;
}
.services-left { position: sticky; top: 8rem; }
.services-left h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.4rem, 3vw, 3.4rem);
  line-height: 1.1; font-weight: 400; letter-spacing: -0.01em;
  margin: 1.2rem 0 1.6rem;
}
.services-left h2 em { font-style: italic; color: var(--accent); }
.services-left p { font-size: 0.95rem; line-height: 1.85; color: var(--muted); max-width: 34ch; }
.services-right { display: flex; flex-direction: column; gap: 0; }
.service-item {
  display: grid; grid-template-columns: 56px 1fr auto;
  gap: 1.8rem; align-items: center;
  padding: 2rem 0; border-bottom: 1px solid var(--border);
  transition: padding-left 0.25s ease;
  cursor: default;
}
.service-item:first-child { border-top: 1px solid var(--border); }
.service-item:hover { padding-left: 0.6rem; }
.service-num {
  font-family: 'DM Serif Display', serif; font-style: italic;
  font-size: 0.9rem; color: var(--accent); align-self: flex-start; margin-top: 0.15rem;
}
.service-body h3 { font-size: 1.1rem; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 0.4rem; }
.service-body p { font-size: 0.88rem; color: var(--muted); line-height: 1.7; }
.service-price {
  font-size: 0.8rem; font-weight: 600; color: var(--accent);
  white-space: nowrap; letter-spacing: 0.04em;
}
.service-arrow {
  font-size: 1.2rem; color: var(--muted);
  transition: transform 0.2s, color 0.2s; display: none;
}
.service-item:hover .service-arrow { transform: translateX(4px); color: var(--accent); }

/* ── PAGE HEADER (inner pages) ───────────── */
.page-hero {
  padding: 9rem 4rem 5rem;
  background: var(--bg-dark);
  position: relative; overflow: hidden;
  min-height: 38vh; display: flex; flex-direction: column; justify-content: flex-end;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent, transparent 28px,
    rgba(255,255,255,0.018) 28px,
    rgba(255,255,255,0.018) 29px
  );
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero .label { color: var(--accent-bright); margin-bottom: 1.4rem; }
.page-hero .label::before { background: var(--accent-bright); }
.page-hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.8rem, 5vw, 5rem);
  color: var(--text-inv); font-weight: 400; line-height: 1.0;
  letter-spacing: -0.02em;
}
.page-hero h1 em { font-style: italic; color: var(--accent-bright); }
.page-hero p {
  font-size: 1rem; color: rgba(248,248,244,0.55); max-width: 50ch;
  line-height: 1.75; margin-top: 1.2rem; font-weight: 300;
}

/* ── PRICING PAGE ────────────────────────── */
.pricing-section { padding: 6rem 4rem; }
.pricing-intro {
  max-width: 560px; margin-bottom: 4rem;
}
.pricing-intro h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 3vw, 3rem); font-weight: 400; letter-spacing: -0.01em;
  margin: 1rem 0 1.2rem;
}
.pricing-intro h2 em { font-style: italic; color: var(--accent); }
.pricing-intro p { font-size: 0.95rem; line-height: 1.85; color: var(--muted); }

.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden;
}
.price-card {
  padding: 2.6rem 2.2rem;
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 0;
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease, background 0.2s;
}
.price-card.in-view { opacity: 1; transform: translateY(0); }
.price-card:last-child { border-right: none; }
.price-card:hover { background: var(--bg-alt); }
.price-card.featured {
  background: var(--accent); border-color: var(--accent);
}
.price-card.featured:hover { background: var(--accent-mid); }

.card-tier {
  font-size: 0.62rem; letter-spacing: 0.38em; text-transform: uppercase;
  color: var(--muted); font-weight: 500; margin-bottom: 1.6rem;
}
.featured .card-tier { color: rgba(248,248,244,0.6); }

.card-price {
  font-family: 'DM Serif Display', serif; font-size: 3.2rem;
  color: var(--text); line-height: 1; font-weight: 400;
  margin-bottom: 0.4rem;
}
.featured .card-price { color: var(--text-inv); }
.card-price sup { font-size: 1.4rem; vertical-align: super; }
.card-currency {
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 0.5rem;
}
.featured .card-currency { color: rgba(248,248,244,0.55); }
.card-tagline {
  font-family: 'DM Serif Display', serif; font-style: italic;
  font-size: 0.95rem; color: var(--accent); margin-bottom: 1.8rem;
}
.featured .card-tagline { color: var(--accent-bright); }

.card-divider { height: 1px; background: var(--border); margin-bottom: 1.8rem; }
.featured .card-divider { background: rgba(248,248,244,0.12); }

.card-name { font-size: 1.2rem; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 0.6rem; }
.featured .card-name { color: var(--text-inv); }
.card-desc { font-size: 0.875rem; color: var(--muted); line-height: 1.7; margin-bottom: 1.8rem; }
.featured .card-desc { color: rgba(248,248,244,0.65); }

.card-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; flex: 1; margin-bottom: 2rem; }
.card-list li {
  font-size: 0.865rem; color: var(--text);
  display: flex; align-items: flex-start; gap: 0.7rem;
}
.featured .card-list li { color: rgba(248,248,244,0.88); }
.card-list li::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0; margin-top: 0.45rem;
}
.featured .card-list li::before { background: var(--accent-bright); }

.card-btn {
  display: block; text-align: center; text-decoration: none;
  padding: 0.85rem 1.6rem; border-radius: var(--radius);
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  background: var(--bg-alt); color: var(--text); border: 1px solid var(--border);
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  margin-top: auto;
}
.card-btn:hover { background: var(--accent); color: #fff; border-color: var(--accent); transform: translateY(-1px); }
.featured .card-btn { background: #fff; color: var(--accent); border-color: transparent; }
.featured .card-btn:hover { background: var(--bg-alt); }

.pricing-note-box {
  margin-top: 3rem; padding: 1.6rem 2.2rem;
  border: 1px solid var(--border-green); border-radius: var(--radius-lg);
  background: var(--accent-light);
  display: flex; align-items: flex-start; gap: 1.2rem;
}
.pricing-note-box .note-icon {
  width: 32px; height: 32px; border-radius: 50%; background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 0.75rem; flex-shrink: 0; margin-top: 0.1rem;
}
.pricing-note-box p { font-size: 0.875rem; color: var(--text); line-height: 1.7; }
.pricing-note-box strong { color: var(--accent); }

/* ── PORTFOLIO PAGE ──────────────────────── */
.portfolio-section { padding: 6rem 4rem; }
.portfolio-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.project-card {
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; position: relative;
  background: #fff;
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.25s;
}
.project-card.in-view { opacity: 1; transform: translateY(0); }
.project-card:hover { box-shadow: 0 16px 50px rgba(14,26,18,0.1); }
.project-thumb {
  width: 100%; aspect-ratio: 16/9;
  background: var(--bg-dark);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.project-coming-soon {
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
  position: relative; z-index: 1;
}
.coming-badge {
  font-size: 0.62rem; letter-spacing: 0.38em; text-transform: uppercase;
  color: var(--accent-bright); border: 1px solid rgba(58,143,92,0.4);
  padding: 0.35rem 0.9rem; border-radius: 999px;
  background: rgba(58,143,92,0.08);
}
.coming-icon {
  width: 64px; height: 64px; border-radius: 50%;
  border: 1px solid rgba(248,248,244,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: rgba(248,248,244,0.25);
}
.coming-label {
  font-family: 'DM Serif Display', serif; font-style: italic;
  font-size: 1.2rem; color: rgba(248,248,244,0.4);
}
.project-thumb::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    -45deg, transparent, transparent 20px,
    rgba(255,255,255,0.012) 20px, rgba(255,255,255,0.012) 21px
  );
}
.project-info { padding: 1.8rem 2rem; }
.project-info .label { margin-bottom: 0.8rem; }
.project-info h3 {
  font-size: 1.2rem; font-weight: 700; letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}
.project-info p { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }

/* ── CONTACT PAGE ────────────────────────── */
.contact-section {
  padding: 6rem 4rem;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: start;
}
.contact-left h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 3vw, 3rem); font-weight: 400;
  letter-spacing: -0.01em; margin: 1rem 0 1.4rem;
}
.contact-left h2 em { font-style: italic; color: var(--accent); }
.contact-left p { font-size: 0.95rem; line-height: 1.85; color: var(--muted); margin-bottom: 2.4rem; }

.contact-details { display: flex; flex-direction: column; gap: 1.1rem; }
.contact-detail {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.1rem 1.4rem;
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  background: #fff; transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-detail:hover { border-color: var(--border-green); box-shadow: 0 4px 20px rgba(14,26,18,0.06); }
.detail-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--accent-light); display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; flex-shrink: 0; color: var(--accent);
}
.detail-body { display: flex; flex-direction: column; gap: 0.1rem; }
.detail-label { font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); }
.detail-value { font-size: 0.9rem; font-weight: 600; color: var(--text); }

/* FORM */
.contact-form-wrap {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2.4rem;
  box-shadow: 0 4px 28px rgba(14,26,18,0.05);
}
.form-title {
  font-size: 1.1rem; font-weight: 700; letter-spacing: -0.01em;
  margin-bottom: 0.4rem;
}
.form-sub { font-size: 0.85rem; color: var(--muted); margin-bottom: 2rem; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group.full { grid-column: 1/-1; }
.form-group label {
  font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 0.8rem 1rem;
  border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--bg); color: var(--text);
  font-family: 'Outfit', sans-serif; font-size: 0.9rem;
  outline: none; transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent-mid);
  box-shadow: 0 0 0 3px rgba(28,74,46,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-submit {
  margin-top: 1.4rem; width: 100%;
  background: var(--accent); color: #fff;
  padding: 1rem 2rem; border: none; border-radius: var(--radius);
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  cursor: pointer; transition: background 0.2s, transform 0.15s;
}
.form-submit:hover { background: var(--accent-mid); transform: translateY(-1px); }

.form-success {
  display: none; text-align: center; padding: 2rem;
}
.form-success .check { font-size: 2.5rem; margin-bottom: 0.8rem; }
.form-success h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.4rem; }
.form-success p { font-size: 0.875rem; color: var(--muted); }

/* ── FOOTER ──────────────────────────────── */
footer {
  background: var(--bg-dark);
  padding: 3rem 4rem;
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid rgba(248,248,244,0.06);
  position: relative;
}
.footer-logo {
  font-family: 'DM Serif Display', serif; font-style: italic;
  font-size: 1.4rem; color: var(--text-inv); letter-spacing: -0.01em;
}
.footer-logo span { color: var(--accent-bright); }
.footer-mid {
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(248,248,244,0.3);
  position: absolute; left: 50%; transform: translateX(-50%);
}
.footer-right { font-size: 0.72rem; color: rgba(248,248,244,0.3); }

/* ── ANIMATIONS ──────────────────────────── */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }

.reveal {
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in-view { opacity: 1; transform: none; }

/* ── HAMBURGER MENU ──────────────────────── */
.nav-hamburger {
  display: none !important;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none; border: 1px solid var(--border);
  border-radius: var(--radius); cursor: pointer;
  padding: 0; transition: border-color 0.2s;
  flex-shrink: 0;
}
.nav-hamburger:hover { border-color: var(--border-green); }
.nav-hamburger span {
  display: block; width: 18px; height: 1.5px;
  background: var(--text); border-radius: 2px;
  transition: transform 0.28s cubic-bezier(0.4,0,0.2,1),
              opacity 0.2s, width 0.25s;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav-drawer {
  display: none;
  position: fixed; top: 68px; left: 0; right: 0;
  background: rgba(248,248,244,0.98);
  backdrop-filter: blur(24px) saturate(160%);
  border-bottom: 1px solid var(--border);
  z-index: 199;
  max-height: 0; overflow: hidden;
  visibility: hidden;
  pointer-events: none;
  transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1), visibility 0s linear 0.35s;
}
.mobile-nav-drawer.open {
  max-height: 420px;
  visibility: visible;
  pointer-events: auto;
  transition: max-height 0.38s cubic-bezier(0.4,0,0.2,1), visibility 0s linear 0s;
}
.mobile-nav-list {
  list-style: none;
  padding: 1rem 1.5rem;
  display: flex; flex-direction: column; gap: 0;
}
.mobile-nav-list li a {
  display: block; padding: 1rem 0;
  font-size: 1.15rem; font-weight: 500; color: var(--text);
  text-decoration: none; letter-spacing: -0.01em;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s, padding-left 0.2s;
}
.mobile-nav-list li:last-child a { border-bottom: none; }
.mobile-nav-list li a:hover,
.mobile-nav-list li a.active { color: var(--accent); padding-left: 0.4rem; }
.mobile-nav-hire {
  margin: 0 1.5rem 1.5rem;
  display: block; text-align: center;
  background: var(--accent); color: #fff;
  padding: 1rem; border-radius: var(--radius);
  text-decoration: none; font-size: 0.78rem;
  font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  transition: background 0.2s;
}
.mobile-nav-hire:hover { background: var(--accent-mid); }

/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero-left { min-height: auto; }
  .hero-right { min-height: auto; }
  .services { grid-template-columns: 1fr; gap: 3rem; }
  .services-left { position: static; }
  .pricing-grid { grid-template-columns: 1fr; border: none; gap: 1rem; }
  .price-card { border: 1px solid var(--border); border-radius: var(--radius-lg); }
  .contact-section { grid-template-columns: 1fr; gap: 3rem; }
  .portfolio-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  /* Nav */
  nav { padding: 0 1.2rem; }
  .nav-links { display: none; }
  .nav-hire { display: none; }
  .nav-hamburger { display: flex !important; }
  .mobile-nav-drawer { display: block; }

  /* Hero */
  .hero { grid-template-columns: 1fr; min-height: auto; height: auto; }
  .hero-left { padding: 7.5rem 1.4rem 2.5rem; min-height: auto; }
  .hero-right { padding: 2.5rem 1.4rem 3rem; border-left: none; border-top: 1px solid var(--border); min-height: auto; }
  .hero-title { font-size: clamp(2.8rem, 11vw, 4rem); }
  .hero-desc { font-size: 0.95rem; max-width: 100%; }
  .hero-actions { flex-direction: column; gap: 0.75rem; }
  .btn-primary, .btn-ghost { width: 100%; text-align: center; padding: 1rem 1.5rem; }
  .hero-stats { gap: 1.5rem; padding-top: 2rem; }
  .h-stat-n { font-size: 1.7rem; }

  /* Skills strip */
  .skills-strip { padding: 0.9rem 0; }

  /* Services */
  .services { padding: 3.5rem 1.4rem; gap: 2.5rem; }
  .services-left { position: static; }
  .services-left h2 { font-size: clamp(2rem, 7vw, 2.6rem); }
  .service-item { grid-template-columns: 44px 1fr auto; gap: 1rem; padding: 1.4rem 0; }
  .service-price { font-size: 0.75rem; }

  /* Pages */
  .page-hero { padding: 7.5rem 1.4rem 2.8rem; min-height: auto; height: auto; }
  .page-hero h1 { font-size: clamp(2.2rem, 8vw, 3.5rem); }

  /* Pricing */
  .pricing-section { padding: 3.5rem 1.4rem; }
  .pricing-grid { grid-template-columns: 1fr; border: none; gap: 1rem; }
  .price-card { border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem 1.6rem; }
  .card-price { font-size: 2.6rem; }
  .pricing-note-box { flex-direction: column; gap: 0.8rem; padding: 1.2rem 1.4rem; }

  /* Portfolio */
  .portfolio-section { padding: 3.5rem 1.4rem; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .project-info-single { padding: 1.4rem 1.5rem; }
  .project-info-single h3 { font-size: 1.2rem; }

  /* Contact */
  .contact-section { padding: 3.5rem 1.4rem; grid-template-columns: 1fr; gap: 2.5rem; }
  .form-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 1.6rem 1.3rem; }

  /* Footer */
  footer { padding: 2rem 1.4rem; flex-direction: column; gap: 0.8rem; text-align: center; }
  .footer-logo { font-size: 1.2rem; }
  .footer-mid { position: static; transform: none; }
}

@media (max-width: 480px) {
  nav { padding: 0 1rem; }
  .nav-logo-name { font-size: 0.8rem; }

  .hero-left { padding: 6.5rem 1rem 2rem; }
  .hero-right { padding: 2rem 1rem 2.5rem; }
  .hero-title { font-size: clamp(2.4rem, 12vw, 3.2rem); }
  .hero-stats { flex-direction: row; gap: 1.2rem; flex-wrap: wrap; }
  .h-stat { min-width: calc(33% - 1rem); }

  .services { padding: 2.5rem 1rem; }
  .service-item { grid-template-columns: 1fr; gap: 0.4rem; padding: 1.2rem 0; }
  .service-num { display: none; }
  .service-price { align-self: flex-start; }

  .page-hero { padding: 6.5rem 1rem 2.2rem; }
  .pricing-section, .contact-section, .portfolio-section { padding: 2.5rem 1rem; }
  .price-card { padding: 1.6rem 1.2rem; }

  .contact-form-wrap { padding: 1.2rem 1rem; }
  .project-info-single { padding: 1.2rem 1rem; }
  footer { padding: 1.6rem 1rem; }
  .mobile-nav-list li a { font-size: 1.05rem; }
}
