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

:root {
  --bg: #FAF8F4;
  --bg-alt: #F0ECE4;
  --bg-dark: #1C1A18;
  --fg: #1C1A18;
  --fg-muted: #7A7A7A;
  --fg-inv: #FAF8F4;
  --border: rgba(28,26,24,0.12);
  --card-bg: #FFFFFF;
  --accent: #8B1E1E;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-mono: 'DM Mono', monospace;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--fg);
  transition: background 0.4s, color 0.4s;
  overflow-x: hidden;
}

/* â”€â”€â”€ NAV â”€â”€â”€ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  height: 72px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  transition: background 0.4s, border-color 0.4s;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img { height: 44px; width: auto; }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s, color 0.2s;
}
.nav-links a:hover { opacity: 1; color: var(--accent); }
.nav-social { display: flex; gap: 4px; align-items: center; }
.nav-social-btn {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
  border-radius: 2px;
}
.nav-social-btn:hover { color: var(--accent); }
.nav-cta {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-inv);
  background: var(--accent);
  text-decoration: none;
  padding: 10px 22px;
  transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.85; }

/* â”€â”€â”€ HERO â”€â”€â”€ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 72px;
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 48px 80px 80px;
  position: relative;
}
.hero-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 5vw, 84px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s 0.35s forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--accent);
}
.hero-tagline {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--fg-muted);
  max-width: 440px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
}
.hero-actions {
  display: flex; gap: 16px; align-items: center;
  opacity: 0;
  animation: fadeUp 0.8s 0.65s forwards;
}
.btn-primary {
  display: inline-block;
  font-size: 13px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--fg-inv); background: var(--accent);
  text-decoration: none; padding: 14px 32px;
  transition: opacity 0.2s;
}
.btn-primary:hover { opacity: 0.85; }
.btn-ghost {
  display: inline-block;
  font-size: 13px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--fg); border: 1px solid var(--border);
  text-decoration: none; padding: 14px 32px;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--fg); }

.hero-right {
  background: var(--bg-dark);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.hero-right-inner {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0; padding: 60px;
  opacity: 0; animation: fadeIn 1.2s 0.4s forwards;
}
.hero-right img.logo-large {
  width: 220px; height: auto; filter: brightness(1.05) contrast(0.95);
  mix-blend-mode: lighten;
}
.hero-scroll-hint {
  position: absolute; bottom: 32px; left: 80px;
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--fg-muted);
  opacity: 0; animation: fadeIn 1s 1.2s forwards;
}
.scroll-line { width: 40px; height: 1px; background: var(--fg-muted); }

/* â”€â”€â”€ SECTIONS â”€â”€â”€ */
section { padding: 100px 80px; }
.section-label {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px; display: block;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 3.5vw, 56px);
  font-weight: 700; line-height: 1.1;
  margin-bottom: 24px;
}
.section-sub {
  font-size: 17px; font-weight: 300; line-height: 1.7;
  color: var(--fg-muted); max-width: 600px;
}

/* â”€â”€â”€ WHO WE ARE â”€â”€â”€ */
.about-section {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-text { }
.about-text .section-title { margin-bottom: 20px; }
.about-body {
  font-size: 16px; line-height: 1.8; color: var(--fg-muted);
  margin-bottom: 32px; font-weight: 300;
}
.values-list { display: flex; flex-direction: column; gap: 10px; }
.value-item {
  display: flex; align-items: center; gap: 14px;
  font-size: 14px; font-weight: 500; letter-spacing: 0.04em;
}
.value-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0;
}
.about-visual {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4px;
}
.about-card {
  background: var(--bg-alt);
  aspect-ratio: 1/1.2;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 20px; position: relative; overflow: hidden;
}
.about-card:first-child {
  background: var(--accent); color: var(--fg-inv);
  grid-column: 1 / -1;
  aspect-ratio: 2/0.9;
  flex-direction: row; align-items: center; justify-content: space-between;
}
.stat-num {
  font-family: var(--font-display); font-size: 56px; font-weight: 900;
  line-height: 1; color: var(--fg-inv);
}
.stat-label { font-size: 13px; font-weight: 300; letter-spacing: 0.08em; opacity: 0.8; }
.about-card-sm .stat-num {
  font-size: 36px; color: var(--fg);
}
.about-card-sm .stat-label { color: var(--fg-muted); }
.about-card-label {
  font-family: var(--font-mono); font-size: 9px;
  letter-spacing: 0.18em; text-transform: uppercase;
  opacity: 0.5; margin-bottom: 6px;
}

/* â”€â”€â”€ PARALLAX BANDS â”€â”€â”€ */
.parallax-band {
  position: relative;
  height: 380px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.parallax-bg {
  position: absolute; inset: -80px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
}
.parallax-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.52);
  z-index: 1;
}
.parallax-content {
  position: relative; z-index: 2;
  text-align: center; padding: 0 40px;
}
.parallax-quote {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 700; font-style: italic;
  color: #FAF8F4; line-height: 1.25;
  max-width: 800px;
}
.parallax-quote em { color: var(--accent); font-style: normal; }
.parallax-attr {
  margin-top: 20px;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(237,233,226,0.45);
}

/* â”€â”€â”€ SERVICES â”€â”€â”€ */
.services-section {
  position: relative;
  background: none;
}
.services-parallax-bg {
  position: absolute; inset: -100px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
}
.services-overlay {
  position: absolute; inset: 0;
  background: rgba(10,8,8,0.88);
  z-index: 1;
}
.services-inner { position: relative; z-index: 2; }
.services-section .section-title { color: var(--fg-inv); }
.services-section .section-label { }
.services-section .section-sub { color: rgba(237,233,226,0.55); }
.services-header { margin-bottom: 64px; }
.services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: rgba(255,255,255,0.08);
}
.service-card {
  background: var(--bg-dark);
  padding: 36px 28px; position: relative; overflow: hidden;
  cursor: default;
  transition: background 0.3s;
}
.service-card:hover { background: rgba(139,30,30,0.12); }
.service-num {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.2em; color: var(--accent);
  margin-bottom: 20px; display: block;
}
.service-icon {
  width: 36px; height: 36px; margin-bottom: 20px;
  opacity: 0.7;
}
.service-name {
  font-family: var(--font-display); font-size: 18px; font-weight: 600;
  color: var(--fg-inv); margin-bottom: 12px; line-height: 1.3;
}
.service-desc {
  font-size: 13px; line-height: 1.7; color: rgba(237,233,226,0.5);
  font-weight: 300;
}
.service-line {
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--accent);
  transition: width 0.4s;
}
.service-card:hover .service-line { width: 100%; }

/* â”€â”€â”€ PORTFOLIO â”€â”€â”€ */
.portfolio-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 52px;
}
.portfolio-filters {
  display: flex; gap: 4px;
}
.filter-btn {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.15em; text-transform: uppercase;
  border: 1px solid var(--border); background: none;
  color: var(--fg-muted); padding: 8px 16px;
  cursor: pointer; transition: all 0.2s;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--accent); color: var(--fg-inv); border-color: var(--accent);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin-bottom: 52px;
}
.portfolio-item {
  position: relative; overflow: hidden; cursor: pointer;
  background: var(--bg-alt);
}

.portfolio-img {
  width: 100%; aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.portfolio-item:hover .portfolio-img { transform: scale(1.04); }
.portfolio-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,26,24,0.85) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.3s;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 20px;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-title {
  font-family: var(--font-display); font-size: 15px; font-weight: 600;
  color: #FAF8F4; margin-bottom: 4px;
}
.portfolio-type {
  font-family: var(--font-mono); font-size: 9px;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--accent);
}

/* â”€â”€â”€ CLIENTS â”€â”€â”€ */
.clients-section { background: var(--bg-alt); }
.clients-header { margin-bottom: 56px; }
/* â”€â”€â”€ CAROUSEL â”€â”€â”€ */
.clients-grid { display: none; }
.clients-carousel {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 8px 0;
}
.clients-carousel::before,
.clients-carousel::after {
  content: '';
  position: absolute; top: 0; bottom: 0;
  width: 120px; z-index: 2;
  pointer-events: none;
}
.clients-carousel::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-alt), transparent);
}
.clients-carousel::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-alt), transparent);
}
.carousel-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.carousel-track:hover { animation-play-state: paused; }
.carousel-item {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px;
  padding: 36px 64px;
  min-width: 200px;
  border-right: 1px solid var(--border);
  transition: background 0.25s, transform 0.25s;
  cursor: default;
}
.carousel-item:hover {
  background: var(--card-bg);
  transform: translateY(-3px);
}
.carousel-item img {
  max-width: 280px; max-height: 170px;
  width: auto; height: auto;
  object-fit: contain;
  filter: grayscale(1); opacity: 0.5;
  transition: filter 0.3s, opacity 0.3s;
}
.carousel-item:hover img { filter: grayscale(0); opacity: 1; }
.carousel-item-name {
  font-family: var(--font-mono); font-size: 9px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent);
  opacity: 0; transform: translateY(4px);
  transition: opacity 0.25s, transform 0.25s;
}
.carousel-item:hover .carousel-item-name { opacity: 1; transform: translateY(0); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.client-cell {
  background: var(--bg-alt);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px;
  padding: 32px 36px;
  aspect-ratio: 3/2;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  position: relative;
  cursor: default;
}
.client-cell:hover {
  background: var(--card-bg);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
  z-index: 2;
}
.client-img {
  width: 100%; max-width: 160px; max-height: 90px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.55;
  transition: opacity 0.3s, filter 0.3s;
}
.client-cell:hover .client-img {
  opacity: 1;
  filter: grayscale(0);
}
.client-hover-name {
  font-family: var(--font-mono); font-size: 9px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent);
  opacity: 0; transform: translateY(4px);
  transition: opacity 0.25s, transform 0.25s;
}
.client-cell:hover .client-hover-name {
  opacity: 1; transform: translateY(0);
}

/* â”€â”€â”€ EVENTS â”€â”€â”€ */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  margin-bottom: 0;
}
.event-card {
  background: var(--bg);
  padding: 36px 32px;
  display: flex; flex-direction: column; gap: 20px;
  position: relative; overflow: hidden;
  transition: background 0.25s;
}
.event-card:hover { background: var(--card-bg); }
.event-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--accent);
  transition: height 0.4s ease;
}
.event-card:hover::before { height: 100%; }
.event-date-block {
  display: flex; align-items: baseline; gap: 6px;
}
.event-day {
  font-family: var(--font-display);
  font-size: 52px; font-weight: 900; line-height: 1;
  color: var(--accent);
}
.event-month {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 700;
  color: var(--fg); text-transform: uppercase;
}
.event-year {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.1em;
  color: var(--fg-muted); align-self: flex-end; padding-bottom: 8px;
}
.event-body { flex: 1; display: flex; flex-direction: column; gap: 10px; }
.event-tag {
  font-family: var(--font-mono); font-size: 9px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); display: inline-block;
  border: 1px solid var(--accent); padding: 3px 8px;
  width: fit-content;
}
.event-title {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 700; line-height: 1.3;
  color: var(--fg);
}
.event-details {
  font-size: 13px; color: var(--fg-muted);
  display: flex; align-items: center; gap: 6px;
}
.event-icon { font-style: normal; font-size: 12px; }
.event-desc {
  font-size: 13px; line-height: 1.7;
  color: var(--fg-muted); font-weight: 300;
}
.event-status {
  font-family: var(--font-mono); font-size: 9px;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 5px 12px; align-self: flex-start;
}
.event-status.upcoming {
  background: rgba(139,30,30,0.1);
  color: var(--accent);
}
.event-status.past {
  background: var(--bg-alt);
  color: var(--fg-muted);
  font-family: var(--font-mono); font-size: 9px;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 5px 12px; align-self: flex-start;
}
.event-card--featured { grid-row: span 1; }
.event-flyer {
  width: 100%; aspect-ratio: 4/3;
  overflow: hidden; margin-bottom: 4px;
}
.event-flyer img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
  transition: transform 0.4s ease;
}
.event-card--featured:hover .event-flyer img { transform: scale(1.03); }
@media (max-width: 900px) {
  .events-grid { grid-template-columns: 1fr; }
}
.contact-section {
  background: var(--bg-dark);
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.contact-info .section-title { color: var(--fg-inv); }
.contact-info .section-sub { color: rgba(237,233,226,0.55); margin-bottom: 48px; }
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-item {
  display: flex; flex-direction: column; gap: 4px;
  padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.contact-item:last-child { border-bottom: none; }
.contact-item-label {
  font-family: var(--font-mono); font-size: 9px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent);
}
.contact-item-val {
  font-size: 15px; font-weight: 300;
  color: rgba(237,233,226,0.8);
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label {
  font-family: var(--font-mono); font-size: 9px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(237,233,226,0.45);
}
.form-input, .form-select, .form-textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(237,233,226,0.9);
  font-family: var(--font-body); font-size: 14px;
  padding: 12px 14px;
  outline: none; transition: border-color 0.2s;
  width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--accent);
}
.form-select option { background: #1C1A18; }
.form-textarea { resize: vertical; min-height: 120px; }
.form-submit {
  margin-top: 8px;
  font-family: var(--font-body); font-size: 13px;
  font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--accent); color: var(--fg-inv);
  border: none; padding: 16px 32px;
  cursor: pointer; transition: opacity 0.2s; align-self: flex-start;
}
.form-submit:hover { opacity: 0.85; }
.form-submit:active { opacity: 0.7; }

/* â”€â”€â”€ SOCIAL ICONS â”€â”€â”€ */
.social-links { display: flex; gap: 12px; align-items: center; }
.social-btn {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(237,233,226,0.55);
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  flex-shrink: 0;
}
.social-btn:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.social-btn svg { width: 18px; height: 18px; fill: currentColor; }

/* â”€â”€â”€ FOOTER â”€â”€â”€ */
footer {
  background: var(--bg-dark);
  padding: 32px 80px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-copy {
  font-size: 12px; font-weight: 300;
  color: rgba(237,233,226,0.35); letter-spacing: 0.06em;
}
.footer-logo img { height: 32px; filter: brightness(2) grayscale(1); opacity: 0.35; }

/* â”€â”€â”€ TWEAKS PANEL â”€â”€â”€ */
#tweaks-panel {
  display: none; position: fixed; bottom: 24px; right: 24px;
  z-index: 9999; background: #1C1A18; border: 1px solid rgba(255,255,255,0.12);
  padding: 20px; flex-direction: column; gap: 16px; min-width: 220px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}
.tweaks-title {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 4px;
}
.tweak-group { display: flex; flex-direction: column; gap: 8px; }
.tweak-label {
  font-family: var(--font-mono); font-size: 9px;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(237,233,226,0.45);
}
.tweak-options { display: flex; gap: 6px; flex-wrap: wrap; }
.tweak-btn {
  font-family: var(--font-mono); font-size: 9px;
  letter-spacing: 0.1em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.12); background: none;
  color: rgba(237,233,226,0.6); padding: 5px 10px;
  cursor: pointer; transition: all 0.2s;
}
.tweak-btn.active { background: var(--accent); color: #fff; border-color: var(--accent); }
.tweak-swatch {
  width: 24px; height: 24px; border: 2px solid transparent;
  cursor: pointer; transition: border-color 0.2s;
}
.tweak-swatch.active { border-color: #fff; }
.tweak-swatches { display: flex; gap: 6px; }

/* â”€â”€â”€ ANIMATIONS â”€â”€â”€ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* â”€â”€â”€ RESPONSIVE â”€â”€â”€ */
@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  section { padding: 64px 24px; }
  .hero { grid-template-columns: 1fr; }
  .hero-left { padding: 48px 24px; }
  .hero-right { min-height: 320px; }
  .about-section { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-item { grid-column: span 1 !important; }
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-section { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  footer { flex-direction: column; gap: 16px; padding: 24px; }
  .about-visual { grid-template-columns: 1fr; }
  .about-card:first-child { grid-column: 1; }
}
