/* ── Reset & Variables ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #fafafa;
  --white: #ffffff;
  --black: #0a0a0a;
  --orange: #e85d04;
  --orange-light: #f48c06;
  --orange-dim: #fff0e6;
  --gray-100: #f4f4f4;
  --gray-200: #e8e8e8;
  --gray-400: #999;
  --gray-600: #555;
  --gray-800: #222;
  --text: #1a1a1a;
  --muted: #666;
  --border: #e0e0e0;
  --radius: 12px;
  --radius-lg: 20px;
  --inter: 'Inter', sans-serif;
  --playfair: 'Playfair Display', serif;
  --nav-h: 72px;
  --max-w: 1200px;
  --section-p: 100px;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { background: var(--bg); color: var(--text); font-family: var(--inter); overflow-x: hidden; -webkit-font-smoothing: antialiased; }

a { text-decoration: none; color: inherit; transition: color 0.2s; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--inter); }

/* ── Utility ────────────────────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; }
.tag { display: inline-block; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--orange); margin-bottom: 16px; }
.section-title { font-family: var(--playfair); font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 900; line-height: 1.05; color: var(--black); margin-bottom: 16px; }
.section-sub { font-size: 1.05rem; color: var(--muted); line-height: 1.8; max-width: 560px; margin-bottom: 56px; }
.btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--orange); color: #fff; font-weight: 600; font-size: 0.9rem; padding: 14px 30px; border-radius: 100px; border: none; transition: transform 0.15s, box-shadow 0.2s; letter-spacing: 0.02em; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,93,4,0.3); color: #fff; }
.btn-outline { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: var(--black); font-weight: 600; font-size: 0.9rem; padding: 14px 30px; border-radius: 100px; border: 1.5px solid var(--border); transition: border-color 0.2s, color 0.2s; letter-spacing: 0.02em; }
.btn-outline:hover { border-color: var(--black); color: var(--black); }

/* ── NAV ────────────────────────────────────────────────────────────────── */
#navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; height: var(--nav-h); transition: background 0.3s, box-shadow 0.3s; }
#navbar.scrolled { background: rgba(250,250,250,0.95); backdrop-filter: blur(12px); box-shadow: 0 1px 0 var(--border); }
.nav-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.nav-logo { display: flex; flex-direction: column; line-height: 1.1; }
.logo-first { font-family: var(--inter); font-weight: 300; font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--muted); }
.logo-last { font-family: var(--inter); font-weight: 700; font-size: 0.95rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--black); }
.nav-links { display: flex; gap: 2px; }
.nav-links a { font-size: 0.82rem; font-weight: 500; color: var(--muted); padding: 8px 14px; border-radius: 8px; transition: color 0.2s, background 0.2s; letter-spacing: 0.02em; }
.nav-links a:hover, .nav-links a.active { color: var(--black); background: var(--gray-100); }
.nav-right { display: flex; align-items: center; gap: 20px; }
.lang-switch { display: flex; align-items: center; gap: 6px; font-size: 0.75rem; font-weight: 600; color: var(--muted); letter-spacing: 0.08em; }
.lang-switch a { transition: color 0.2s; }
.lang-switch a.active { color: var(--orange); }
.lang-switch span { color: var(--border); }
.btn-nav { background: var(--black); color: #fff; font-size: 0.82rem; font-weight: 600; padding: 10px 22px; border-radius: 100px; border: none; transition: background 0.2s; letter-spacing: 0.03em; }
.btn-nav:hover { background: var(--orange); color: #fff; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--black); border-radius: 2px; transition: all 0.3s; }

/* Mobile Nav */
.mobile-nav { display: none; position: fixed; inset: 0; background: var(--white); z-index: 999; flex-direction: column; align-items: center; justify-content: center; gap: 8px; }
.mobile-nav.open { display: flex; }
.mobile-nav ul { text-align: center; }
.mobile-nav ul li { margin-bottom: 8px; }
.mobile-nav ul a { font-family: var(--playfair); font-size: 2rem; font-weight: 700; color: var(--black); transition: color 0.2s; }
.mobile-nav ul a:hover { color: var(--orange); }
.mobile-close { position: absolute; top: 24px; right: 24px; background: none; border: none; font-size: 1.4rem; color: var(--muted); }
.mobile-lang { margin-top: 24px; display: flex; gap: 12px; font-size: 0.85rem; font-weight: 600; color: var(--muted); }
.mobile-lang a.active { color: var(--orange); }

/* ── HERO ───────────────────────────────────────────────────────────────── */
.hero { min-height: 100dvh; display: flex; align-items: center; padding-top: var(--nav-h); position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-bg-circle { position: absolute; border-radius: 50%; }
.hero-bg-circle:nth-child(1) { width: 600px; height: 600px; background: radial-gradient(circle, rgba(232,93,4,0.08) 0%, transparent 70%); top: -100px; right: -100px; }
.hero-bg-circle:nth-child(2) { width: 400px; height: 400px; background: radial-gradient(circle, rgba(232,93,4,0.05) 0%, transparent 70%); bottom: 0; left: 10%; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; padding: 80px 0; }
.hero-tag-wrap { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.hero-tag-line { width: 32px; height: 2px; background: var(--orange); }
.hero-title { font-family: var(--playfair); font-size: clamp(3rem, 5.5vw, 5.5rem); font-weight: 900; line-height: 1.0; color: var(--black); margin-bottom: 24px; }
.hero-title em { font-style: italic; color: var(--orange); }
.hero-sub { font-size: 1.05rem; color: var(--muted); line-height: 1.8; max-width: 460px; margin-bottom: 40px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-visual { position: relative; }
.hero-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; box-shadow: 0 20px 60px rgba(0,0,0,0.06); }
.hero-card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 16px; }
.hero-mini-card { background: var(--gray-100); border-radius: var(--radius); padding: 20px 16px; }
.hero-mini-card .num { font-family: var(--playfair); font-size: 1.8rem; font-weight: 900; color: var(--orange); line-height: 1; margin-bottom: 4px; }
.hero-mini-card .lbl { font-size: 0.72rem; color: var(--muted); font-weight: 500; }
.hero-bar { display: flex; align-items: center; gap: 12px; padding: 14px 16px; background: var(--orange-dim); border-radius: var(--radius); }
.hero-bar-dot { width: 10px; height: 10px; background: var(--orange); border-radius: 50%; animation: blink 1.5s ease infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
.hero-bar-text { font-size: 0.82rem; font-weight: 600; color: var(--orange); }
.hero-scroll { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; }
.hero-scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--muted), transparent); animation: scrollAnim 1.5s ease infinite; }
.hero-scroll-text { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
@keyframes scrollAnim { 0%{opacity:0;transform:scaleY(0);transform-origin:top} 50%{opacity:1} 100%{opacity:0;transform:scaleY(1);transform-origin:bottom} }

/* ── SERVICES ───────────────────────────────────────────────────────────── */
.services-section { padding: var(--section-p) 0; background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.service-card { background: var(--white); padding: 40px 32px; transition: background 0.3s; cursor: default; }
.service-card:hover { background: var(--gray-100); }
.service-icon { width: 48px; height: 48px; background: var(--orange-dim); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; font-size: 1.4rem; }
.service-title { font-weight: 700; font-size: 1rem; color: var(--black); margin-bottom: 10px; }
.service-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.7; }

/* ── ABOUT ──────────────────────────────────────────────────────────────── */
.about-section { padding: var(--section-p) 0; }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual { position: relative; }
.about-img-wrap { background: var(--gray-100); border-radius: var(--radius-lg); aspect-ratio: 4/5; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.about-img-placeholder { font-family: var(--playfair); font-size: 6rem; font-weight: 900; color: var(--gray-200); letter-spacing: -0.04em; }
.about-badge { position: absolute; bottom: -20px; right: -20px; background: var(--orange); color: #fff; border-radius: var(--radius); padding: 20px 24px; box-shadow: 0 12px 32px rgba(232,93,4,0.3); }
.about-badge-num { font-family: var(--playfair); font-size: 2rem; font-weight: 900; line-height: 1; }
.about-badge-lbl { font-size: 0.72rem; font-weight: 500; opacity: 0.85; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.about-stat { text-align: center; padding: 20px 16px; background: var(--gray-100); border-radius: var(--radius); }
.about-stat-num { font-family: var(--playfair); font-size: 1.8rem; font-weight: 900; color: var(--orange); }
.about-stat-lbl { font-size: 0.72rem; color: var(--muted); margin-top: 4px; }

/* ── PORTFOLIO ──────────────────────────────────────────────────────────── */
.portfolio-section { padding: var(--section-p) 0; background: var(--black); }
.portfolio-section .tag { color: var(--orange); }
.portfolio-section .section-title { color: var(--white); }
.portfolio-section .section-sub { color: #888; }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.portfolio-card { background: #111; border-radius: var(--radius); overflow: hidden; transition: transform 0.3s; cursor: pointer; }
.portfolio-card:hover { transform: translateY(-4px); }
.portfolio-card:first-child { grid-column: span 2; }
.portfolio-thumb { aspect-ratio: 16/9; background: #1a1a1a; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.portfolio-thumb-tall { aspect-ratio: 3/4; }
.portfolio-placeholder { font-size: 3rem; opacity: 0.2; }
.portfolio-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%); opacity: 0; transition: opacity 0.3s; display: flex; align-items: flex-end; padding: 20px; }
.portfolio-card:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay-tag { background: var(--orange); color: #fff; font-size: 0.7rem; font-weight: 600; padding: 4px 10px; border-radius: 100px; letter-spacing: 0.05em; }
.portfolio-info { padding: 20px; }
.portfolio-cat { font-size: 0.68rem; font-weight: 600; color: var(--orange); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 6px; }
.portfolio-name { font-weight: 600; font-size: 0.95rem; color: var(--white); }

/* ── BLOG ───────────────────────────────────────────────────────────────── */
.blog-section { padding: var(--section-p) 0; background: var(--white); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: box-shadow 0.3s, transform 0.3s; background: var(--white); }
.blog-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.08); transform: translateY(-4px); }
.blog-thumb { height: 200px; background: var(--gray-100); display: flex; align-items: center; justify-content: center; font-size: 2.5rem; }
.blog-body { padding: 24px; }
.blog-cat { font-size: 0.68rem; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 10px; }
.blog-title { font-weight: 700; font-size: 1rem; color: var(--black); line-height: 1.4; margin-bottom: 10px; }
.blog-excerpt { font-size: 0.83rem; color: var(--muted); line-height: 1.7; margin-bottom: 16px; }
.blog-meta { display: flex; align-items: center; justify-content: space-between; font-size: 0.75rem; color: var(--gray-400); }
.blog-read-more { color: var(--orange); font-weight: 600; font-size: 0.82rem; display: flex; align-items: center; gap: 4px; }

/* ── CONTACT ────────────────────────────────────────────────────────────── */
.contact-section { padding: var(--section-p) 0; }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 16px; padding: 24px 0; border-bottom: 1px solid var(--border); }
.contact-ico { width: 44px; height: 44px; background: var(--orange-dim); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.contact-lbl { font-size: 0.68rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; font-weight: 600; }
.contact-val { font-size: 0.95rem; font-weight: 500; color: var(--black); }
.contact-val a:hover { color: var(--orange); }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.f-group { display: flex; flex-direction: column; gap: 6px; }
.f-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.f-label { font-size: 0.7rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; }
.f-input { background: var(--white); border: 1.5px solid var(--border); border-radius: 10px; padding: 13px 16px; color: var(--text); font-family: var(--inter); font-size: 0.9rem; outline: none; transition: border-color 0.2s, box-shadow 0.2s; width: 100%; }
.f-input:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(232,93,4,0.08); }
textarea.f-input { resize: vertical; min-height: 120px; }
.f-submit { background: var(--orange); color: #fff; border: none; border-radius: 10px; padding: 16px; font-weight: 700; font-size: 0.9rem; transition: transform 0.15s, box-shadow 0.2s; }
.f-submit:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(232,93,4,0.3); }
.form-success { background: #f0fff4; border: 1px solid #68d391; border-radius: 10px; padding: 16px; color: #276749; font-size: 0.88rem; font-weight: 500; }
.form-error { background: #fff5f5; border: 1px solid #fc8181; border-radius: 10px; padding: 16px; color: #c53030; font-size: 0.88rem; font-weight: 500; }

/* ── CTA BANNER ─────────────────────────────────────────────────────────── */
.cta-banner { background: var(--orange); padding: 80px 0; text-align: center; }
.cta-banner h2 { font-family: var(--playfair); font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 900; color: #fff; margin-bottom: 16px; }
.cta-banner p { font-size: 1rem; color: rgba(255,255,255,0.8); margin-bottom: 32px; }
.btn-white { background: #fff; color: var(--orange); font-weight: 700; font-size: 0.9rem; padding: 14px 32px; border-radius: 100px; border: none; transition: transform 0.15s, box-shadow 0.2s; display: inline-block; }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); color: var(--orange); }

/* ── FOOTER ─────────────────────────────────────────────────────────────── */
footer { background: var(--black); color: var(--white); padding: 80px 0 0; }
.footer-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; }
.footer-top { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; padding-bottom: 60px; border-bottom: 1px solid #1a1a1a; }
.footer-logo { font-family: var(--inter); font-weight: 700; font-size: 1.1rem; letter-spacing: 0.12em; text-transform: uppercase; line-height: 1.3; margin-bottom: 16px; }
.footer-logo span { color: var(--orange); }
.footer-brand p { font-size: 0.85rem; color: #666; line-height: 1.7; max-width: 260px; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.footer-col h4 { font-size: 0.72rem; font-weight: 700; color: #888; text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: 0.85rem; color: #555; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--orange); }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a { width: 36px; height: 36px; background: #111; border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #555; transition: background 0.2s, color 0.2s; }
.footer-social a:hover { background: var(--orange); color: #fff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 24px 0; border-top: 1px solid #111; margin-top: 0; }
.footer-bottom span, .footer-bottom a { font-size: 0.78rem; color: #444; }
.footer-bottom a:hover { color: var(--orange); }

/* ── Page sections ──────────────────────────────────────────────────────── */
.page-section { padding: var(--section-p) 0; }
.page-hero { padding: calc(var(--nav-h) + 60px) 0 60px; background: var(--gray-100); border-bottom: 1px solid var(--border); }
.page-hero .tag { display: block; margin-bottom: 12px; }
.page-hero h1 { font-family: var(--playfair); font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 900; color: var(--black); margin-bottom: 16px; line-height: 1.1; }
.page-hero p { font-size: 1rem; color: var(--muted); max-width: 560px; line-height: 1.8; }

/* Services page */
.services-full { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.service-full-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 40px; transition: border-color 0.3s, box-shadow 0.3s; }
.service-full-card:hover { border-color: var(--orange); box-shadow: 0 8px 32px rgba(232,93,4,0.08); }
.service-full-icon { font-size: 2.5rem; margin-bottom: 20px; }
.service-full-title { font-family: var(--playfair); font-size: 1.4rem; font-weight: 700; color: var(--black); margin-bottom: 12px; }
.service-full-desc { font-size: 0.88rem; color: var(--muted); line-height: 1.8; margin-bottom: 20px; }
.service-list { display: flex; flex-direction: column; gap: 6px; }
.service-list li { font-size: 0.82rem; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.service-list li::before { content: '—'; color: var(--orange); font-weight: 700; }

/* Portfolio full */
.portfolio-full-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.portfolio-full-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: box-shadow 0.3s, transform 0.3s; }
.portfolio-full-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.08); transform: translateY(-4px); }
.portfolio-full-thumb { height: 200px; background: var(--gray-100); display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.portfolio-full-body { padding: 20px; }
.portfolio-full-cat { font-size: 0.68rem; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px; }
.portfolio-full-title { font-weight: 700; font-size: 0.95rem; color: var(--black); margin-bottom: 8px; }
.portfolio-full-desc { font-size: 0.82rem; color: var(--muted); line-height: 1.6; }

/* Blog full */
.blog-full-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* About full */
.about-full { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; }
.about-sidebar { }
.about-main { }
.about-main p { font-size: 0.95rem; color: var(--muted); line-height: 1.9; margin-bottom: 20px; }
.about-main h3 { font-family: var(--playfair); font-size: 1.5rem; font-weight: 700; color: var(--black); margin: 32px 0 16px; }
.skills-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 32px; }
.skill-item { background: var(--gray-100); border-radius: 8px; padding: 12px 16px; font-size: 0.83rem; font-weight: 500; color: var(--black); display: flex; align-items: center; gap: 8px; }
.skill-dot { width: 6px; height: 6px; background: var(--orange); border-radius: 50%; flex-shrink: 0; }
.timeline { display: flex; flex-direction: column; gap: 0; }
.timeline-item { display: flex; gap: 20px; padding-bottom: 32px; position: relative; }
.timeline-item::before { content: ''; position: absolute; left: 15px; top: 28px; bottom: 0; width: 1px; background: var(--border); }
.timeline-item:last-child::before { display: none; }
.timeline-dot { width: 32px; height: 32px; background: var(--orange-dim); border: 2px solid var(--orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.timeline-dot-inner { width: 8px; height: 8px; background: var(--orange); border-radius: 50%; }
.timeline-year { font-size: 0.72rem; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; }
.timeline-title { font-weight: 700; font-size: 0.95rem; color: var(--black); margin-bottom: 4px; }
.timeline-desc { font-size: 0.83rem; color: var(--muted); line-height: 1.6; }

/* ── Scroll animations ──────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; }
  .about-visual { display: none; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-card:first-child { grid-column: span 1; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .services-full { grid-template-columns: 1fr; }
  .portfolio-full-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-full-grid { grid-template-columns: repeat(2, 1fr); }
  .about-full { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  :root { --section-p: 60px; }
  .container { padding: 0 20px; }
  .nav-inner { padding: 0 20px; }
  .nav-links, .nav-right { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .f-grid { grid-template-columns: 1fr; }
  .footer-inner { padding: 0 20px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .about-stats { grid-template-columns: 1fr; }
  .skills-grid { grid-template-columns: 1fr; }
  .portfolio-full-grid { grid-template-columns: 1fr; }
  .blog-full-grid { grid-template-columns: 1fr; }
}
