/* =============================================
   MİMARLIK SİTESİ - ANA STİL DOSYASI
   Tema: Koyu / Mimari / Lüks
   Fontlar: Cormorant Garamond + Jost
   ============================================= */

:root {
  --bg-primary:   #0a0a0a;
  --bg-secondary: #111111;
  --bg-card:      #161616;
  --bg-hover:     #1c1c1c;
  --border:       rgba(255,255,255,0.07);
  --border-light: rgba(255,255,255,0.12);

  --gold:         #c9a84c;
  --gold-light:   #e2c47a;
  --gold-dark:    #a07830;
  --white:        #ffffff;
  --text-primary: #e8e8e8;
  --text-muted:   #888888;
  --text-faint:   #555555;

  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'Jost', sans-serif;

  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
  --shadow:      0 8px 40px rgba(0,0,0,0.5);
  --shadow-sm:   0 2px 16px rgba(0,0,0,0.3);
  --radius:      2px;
  --container:   1280px;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* SCROLLBAR */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* SELECTION */
::selection { background: var(--gold); color: #000; }

/* =============================================
   LAYOUT
   ============================================= */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
section { padding: 100px 0; }

/* =============================================
   TOPBAR
   ============================================= */
.topbar {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 24px; }
.topbar a { color: var(--text-muted); }
.topbar a:hover { color: var(--gold); }
.topbar a i { margin-right: 6px; color: var(--gold); }
.topbar-right a { font-size: 0.85rem; }

/* =============================================
   HEADER
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}
.site-header.scrolled {
  background: rgba(10,10,10,0.98);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 40px;
}
.logo { display: flex; flex-direction: column; gap: 1px; }
.logo-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-transform: uppercase;
  line-height: 1;
}
.logo small {
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 400;
}
.logo img { height: 40px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 36px; }
.main-nav a {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 4px 0;
  position: relative;
  white-space: nowrap;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.main-nav a:hover, .main-nav a.active { color: var(--white); }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.menu-toggle span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--white);
  transition: all var(--transition);
}

/* =============================================
   HERO SLIDER
   ============================================= */
.hero-slider { position: relative; overflow: hidden; }
.swiper-slide-hero {
  height: 90vh;
  min-height: 600px;
  position: relative;
}
.hero-slide-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 6s ease;
}
.swiper-slide-active .hero-slide-bg { transform: scale(1); }
.hero-slide-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.3) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding-bottom: 100px;
}
.hero-text { max-width: 700px; }
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease 0.3s;
}
.hero-label::before {
  content: '';
  width: 40px; height: 1px;
  background: var(--gold);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.9s ease 0.5s;
}
.hero-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
  max-width: 500px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease 0.7s;
}
.hero-btn {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease 0.9s;
}
.swiper-slide-active .hero-label,
.swiper-slide-active .hero-title,
.swiper-slide-active .hero-subtitle,
.swiper-slide-active .hero-btn { opacity: 1; transform: translateY(0); }

.swiper-pagination-hero {
  position: absolute;
  bottom: 32px !important;
  right: 40px;
  left: auto !important;
  width: auto !important;
  display: flex;
  gap: 8px;
}
.swiper-pagination-hero .swiper-pagination-bullet {
  width: 30px; height: 2px; border-radius: 0;
  background: rgba(255,255,255,0.3);
  opacity: 1;
}
.swiper-pagination-hero .swiper-pagination-bullet-active {
  background: var(--gold);
  width: 50px;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-gold {
  background: var(--gold);
  color: #000;
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201,168,76,0.3);
}
.btn-outline {
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.05);
}
.btn-dark {
  background: var(--bg-secondary);
  color: var(--text-primary);
  border: 1px solid var(--border);
}
.btn-dark:hover { border-color: var(--gold); color: var(--gold); }

/* =============================================
   SECTION HEADERS
   ============================================= */
.section-header { text-align: center; margin-bottom: 70px; }
.section-header.left { text-align: left; }
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-tag::before, .section-tag::after {
  content: '';
  width: 30px; height: 1px;
  background: var(--gold);
}
.section-header.left .section-tag::after { display: none; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-desc {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1rem;
}
.section-header.left .section-desc { margin: 0; }

/* DIVIDER */
.divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0;
}
.divider::before, .divider::after {
  content: ''; flex: 1; height: 1px;
  background: var(--border-light);
}
.divider-icon { color: var(--gold); font-size: 0.6rem; }

/* =============================================
   STATS BAR
   ============================================= */
.stats-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 50px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}
.stat-item {
  background: var(--bg-card);
  padding: 30px 20px;
  text-align: center;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* =============================================
   PROJECTS GRID
   ============================================= */
.projects-section { background: var(--bg-primary); }
.filter-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 50px;
}
.filter-btn {
  padding: 8px 24px;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(201,168,76,0.05);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.project-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  display: block;
}
.project-card.large { grid-column: span 2; aspect-ratio: 16/9; }
.project-thumb {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.project-card:hover .project-thumb { transform: scale(1.06); }
.project-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 32px;
}
.project-card:hover .project-overlay { opacity: 1; }
.project-info { transform: translateY(16px); transition: transform var(--transition); }
.project-card:hover .project-info { transform: translateY(0); }
.project-cat {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.project-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 8px;
}
.project-meta {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  display: flex;
  gap: 16px;
}

/* =============================================
   SERVICES
   ============================================= */
.services-section { background: var(--bg-secondary); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.service-card {
  background: var(--bg-card);
  padding: 50px 40px;
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 3px; height: 0;
  background: var(--gold);
  transition: height 0.4s ease;
}
.service-card:hover { background: var(--bg-hover); border-color: var(--border-light); }
.service-card:hover::before { height: 100%; }
.service-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border-light);
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 28px;
  transition: all var(--transition);
}
.service-card:hover .service-icon {
  border-color: var(--gold);
  background: rgba(201,168,76,0.08);
}
.service-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 14px;
}
.service-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 24px;
}
.service-link {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-faint);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition);
}
.service-card:hover .service-link { color: var(--gold); gap: 14px; }

/* =============================================
   ABOUT SECTION
   ============================================= */
.about-section { background: var(--bg-primary); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.about-img-accent {
  position: absolute;
  bottom: -30px; right: -30px;
  width: 200px; height: 200px;
  border: 1px solid var(--gold);
  z-index: -1;
}
.about-year-badge {
  position: absolute;
  top: -20px; left: -20px;
  width: 100px; height: 100px;
  background: var(--gold);
  color: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
}
.about-year-badge .year {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1;
}
.about-year-badge .label {
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.about-content .section-header { margin-bottom: 30px; }
.about-text {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 0.95rem;
  line-height: 1.9;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 36px 0;
}
.about-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.about-feature-icon {
  color: var(--gold);
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.about-feature-text { font-size: 0.85rem; color: var(--text-muted); }
.about-feature-text strong { color: var(--text-primary); display: block; margin-bottom: 2px; }

/* =============================================
   BLOG SECTION
   ============================================= */
.blog-section { background: var(--bg-secondary); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.blog-card { background: var(--bg-card); border: 1px solid var(--border); transition: all var(--transition); }
.blog-card:hover { border-color: var(--border-light); transform: translateY(-4px); box-shadow: var(--shadow); }
.blog-thumb {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.blog-card:hover .blog-thumb img { transform: scale(1.05); }
.blog-cat-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--gold);
  color: #000;
  padding: 4px 14px;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
}
.blog-body { padding: 28px 28px 32px; }
.blog-meta {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--text-faint);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  gap: 16px;
}
.blog-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card:hover .blog-title { color: var(--gold); }
.blog-excerpt {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.8;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, #1a1208 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 0;
  text-align: center;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 20px;
}
.cta-desc { color: var(--text-muted); margin-bottom: 40px; max-width: 500px; margin-left: auto; margin-right: auto; }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
}
.contact-info h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 16px;
}
.contact-info-item {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.contact-info-item:last-of-type { border: none; }
.contact-info-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border: 1px solid var(--border-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.contact-info-text span {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-faint);
  display: block;
  margin-bottom: 4px;
}
.contact-info-text strong { font-weight: 400; color: var(--text-primary); }

/* FORM */
.contact-form .form-group { margin-bottom: 24px; }
.contact-form label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 10px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-primary);
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color var(--transition);
  outline: none;
  border-radius: 0;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--gold); background: var(--bg-hover); }
.contact-form textarea { height: 150px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  background: var(--bg-secondary);
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(to left, rgba(201,168,76,0.03), transparent);
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 12px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--text-faint);
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { color: var(--gold); }

/* =============================================
   PAGINATION
   ============================================= */
.pagination {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-top: 60px;
}
.page-link {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.page-link:hover, .page-link.active {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(201,168,76,0.06);
}

/* =============================================
   ALERTS
   ============================================= */
.alert {
  padding: 14px 20px;
  margin-bottom: 24px;
  font-size: 0.9rem;
  border-left: 3px solid;
}
.alert-success { background: rgba(34,197,94,0.08); border-color: #22c55e; color: #86efac; }
.alert-danger  { background: rgba(239,68,68,0.08);  border-color: #ef4444; color: #fca5a5; }
.alert-warning { background: rgba(234,179,8,0.08);  border-color: #eab308; color: #fde047; }
.alert-info    { background: rgba(59,130,246,0.08);  border-color: #3b82f6; color: #93c5fd; }

/* =============================================
   SCROLL TO TOP
   ============================================= */
.scroll-top {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 44px; height: 44px;
  background: var(--gold);
  color: #000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: all var(--transition);
  z-index: 999;
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--gold-light); transform: translateY(-3px); }

/* =============================================
   FOOTER
   ============================================= */
.site-footer { background: var(--bg-secondary); border-top: 1px solid var(--border); }
.footer-top { padding: 80px 0 60px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
}
.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 12px;
  letter-spacing: 0.06em;
}
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid var(--border-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  transition: all var(--transition);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.06); }
.footer-col h4 {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: var(--text-muted); font-size: 0.88rem; }
.footer-col ul li a:hover { color: var(--gold); padding-left: 6px; }
.footer-col ul li a { transition: all var(--transition); }
.contact-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 14px;
}
.contact-list i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}
.footer-bottom p { font-size: 0.78rem; color: var(--text-faint); letter-spacing: 0.08em; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1200px) {
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .project-card.large { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 992px) {
  section { padding: 70px 0; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .topbar { display: none; }
  .main-nav {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    background: var(--bg-primary);
    gap: 30px;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    z-index: 999;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav a { font-size: 1rem; letter-spacing: 0.2em; }
  .menu-toggle { display: flex; z-index: 1001; position: relative; }
  .projects-grid { grid-template-columns: 1fr; }
  .project-card.large { grid-column: span 1; aspect-ratio: 4/3; }
  .services-grid, .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .about-img-accent { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
