:root {
  --bg: #06090f;
  --surface: #0d1421;
  --surface2: #131c2e;
  --surface3: #1a2540;
  --border: #1e2d45;
  --border2: #243556;
  --text: #e2eaf8;
  --muted: #7a90b0;
  --accent: #2d7dd2;
  --accent-light: #4d9fe8;
  --gold: #e8a020;
  --white: #ffffff;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Barlow', 'Noto Sans JP', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ─── TOP BAR ─── */
.topbar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
}
.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--muted);
}
.topbar-inner a { color: var(--muted); transition: color 0.2s; }
.topbar-inner a:hover { color: var(--accent-light); }
.topbar-links { display: flex; gap: 24px; }

/* ─── NAV ─── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 9, 15, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand-logo {
  width: 48px;
  height: 48px;
  background: var(--surface2);
  border: 1px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--accent-light);
  letter-spacing: 0.05em;
}
.brand-text strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--white);
  text-transform: uppercase;
}
.brand-text small {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}
.nav-links a {
  padding: 8px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-cta {
  background: var(--accent);
  color: var(--white) !important;
  padding: 10px 20px !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--accent-light) !important; }
.nav-actions { display: flex; align-items: center; gap: 8px; }
.lang-btn {
  background: none;
  border: 1px solid var(--border2);
  color: var(--muted);
  padding: 6px 10px;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.06em;
  transition: all 0.2s;
}
.lang-btn.active, .lang-btn:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* ─── HERO ─── */
.hero {
  position: relative;
  height: 92vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
@media (max-width: 768px) {
  .hero {
    height: auto;
    min-height: 100svh;
    align-items: flex-start;
    overflow: visible;
  }
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--surface);
  min-height: 100%;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(6,9,15,0.98) 0%, rgba(6,9,15,0.55) 40%, rgba(6,9,15,0.2) 100%),
    linear-gradient(to right, rgba(6,9,15,0.7) 0%, transparent 60%);
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.6;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px 80px;
  width: 100%;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 20px;
}
.hero-kicker::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--accent);
}
.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 28px;
  max-width: 800px;
}
.hero h1 span {
  color: var(--accent-light);
  display: block;
}
.hero-desc {
  font-size: 1.1rem;
  color: rgba(226,234,248,0.75);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 36px;
  font-weight: 300;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--accent-light); transform: translateY(-1px); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.3);
  transition: border-color 0.2s, transform 0.15s;
  cursor: pointer;
}
.btn-secondary:hover { border-color: var(--white); transform: translateY(-1px); }
.hero-stats {
  display: flex;
  gap: 0;
  border: 1px solid var(--border2);
  width: fit-content;
}
.hero-stat {
  padding: 18px 32px;
  border-right: 1px solid var(--border2);
  background: rgba(13,20,33,0.8);
  backdrop-filter: blur(8px);
}
.hero-stat:last-child { border-right: none; }
.hero-stat strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--accent-light);
  line-height: 1;
  letter-spacing: 0.02em;
}
.hero-stat span {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ─── SECTION COMMONS ─── */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 90px 32px;
}
.section-full {
  padding: 90px 0;
}
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 14px;
}
.section-label::before {
  content: '';
  display: block;
  width: 22px;
  height: 2px;
  background: var(--accent);
}
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 16px;
}
.section-lead {
  font-size: 1rem;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.8;
  font-weight: 300;
}
.section-head {
  margin-bottom: 52px;
}

/* ─── SERVICES ICON GRID ─── */
.services-bg {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
}
.service-card {
  background: var(--surface2);
  padding: 40px 32px;
  transition: background 0.25s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 0;
  background: var(--accent);
  transition: height 0.35s ease;
}
.service-card:hover { background: var(--surface3); }
.service-card:hover::before { height: 100%; }
.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(45,125,210,0.12);
  border: 1px solid rgba(45,125,210,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
  transition: background 0.25s;
}
.service-card:hover .service-icon {
  background: rgba(45,125,210,0.22);
}
.service-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.75;
  font-weight: 300;
}

/* ─── WHY CHOOSE US ─── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.why-img-wrap {
  position: relative;
}
.why-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  background: var(--surface2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
}
.why-img-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 180px;
  height: 180px;
  background: var(--accent);
  opacity: 0.08;
  z-index: -1;
}
.why-bullets {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 36px;
  border: 1px solid var(--border);
}
.why-bullet {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 24px;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.why-bullet:last-child { border-bottom: none; }
.why-bullet:hover { background: var(--surface2); }
.why-bullet-icon {
  width: 40px;
  height: 40px;
  background: rgba(45,125,210,0.12);
  border: 1px solid rgba(45,125,210,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.why-bullet-text strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 4px;
}
.why-bullet-text p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
}

/* ─── PHOTO STRIP ─── */
.photostrip-bg {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.photostrip-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 240px;
  gap: 3px;
  background: var(--border);
}
.photostrip-item {
  position: relative;
  overflow: hidden;
  background: var(--surface2);
}
/* Card 1 — wide landscape, top left */
.photostrip-item:nth-child(1) { grid-column: span 5; grid-row: span 2; }
/* Card 2 — medium */
.photostrip-item:nth-child(2) { grid-column: span 4; grid-row: span 1; }
/* Card 3 — small */
.photostrip-item:nth-child(3) { grid-column: span 3; grid-row: span 1; }
/* Card 4 — tall right column */
.photostrip-item:nth-child(4) { grid-column: span 3; grid-row: span 2; }
/* Card 5 — medium bottom */
.photostrip-item:nth-child(5) { grid-column: span 4; grid-row: span 1; }
/* Card 6 — wide bottom */
.photostrip-item:nth-child(6) { grid-column: span 5; grid-row: span 1; }
/* Card 7 — fills gap */
.photostrip-item:nth-child(7) { grid-column: span 4; grid-row: span 1; }
/* Card 8 — small */
.photostrip-item:nth-child(8) { grid-column: span 3; grid-row: span 1; }

.photostrip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.72);
  transition: transform 0.5s ease, filter 0.4s ease;
}
.photostrip-item:hover img {
  transform: scale(1.05);
  filter: brightness(0.95);
}
.photostrip-item span {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 10px 14px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(226,234,248,0.85);
  background: linear-gradient(to top, rgba(6,9,15,0.88) 0%, transparent 100%);
}
@media (max-width: 900px) {
  .photostrip-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 200px;
  }
  .photostrip-item:nth-child(1) { grid-column: span 6; grid-row: span 1; }
  .photostrip-item:nth-child(2) { grid-column: span 3; grid-row: span 1; }
  .photostrip-item:nth-child(3) { grid-column: span 3; grid-row: span 1; }
  .photostrip-item:nth-child(4) { grid-column: span 3; grid-row: span 1; }
  .photostrip-item:nth-child(5) { grid-column: span 3; grid-row: span 1; }
  .photostrip-item:nth-child(6) { grid-column: span 6; grid-row: span 1; }
  .photostrip-item:nth-child(7) { grid-column: span 3; grid-row: span 1; }
  .photostrip-item:nth-child(8) { grid-column: span 3; grid-row: span 1; }
}
@media (max-width: 500px) {
  .photostrip-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .photostrip-item:nth-child(n) { grid-column: span 1; grid-row: span 1; }
  .photostrip-item:nth-child(1),
  .photostrip-item:nth-child(6) { grid-column: span 2; }
}

/* ─── PROJECTS GRID (3 col for more cards) ─── */
.projects-bg {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  background: var(--border);
}
.project-card {
  position: relative;
  overflow: hidden;
  background: var(--surface2);
  cursor: pointer;
}
.project-card:first-child {
  grid-column: 1 / 3;
}
.project-img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  background: var(--surface3);
  display: block;
  transition: transform 0.5s ease;
  filter: brightness(0.7);
}
.project-card:first-child .project-img { min-height: 460px; }
.project-card:hover .project-img {
  transform: scale(1.05);
  filter: brightness(0.85);
}
.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,9,15,0.92) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}
.project-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-light);
  border: 1px solid rgba(77,159,232,0.4);
  padding: 3px 8px;
  margin-bottom: 8px;
  width: fit-content;
}
.project-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1.2;
}
.project-card:first-child h3 { font-size: 1.7rem; }
.project-card p {
  font-size: 0.82rem;
  color: rgba(226,234,248,0.65);
  margin-top: 6px;
  font-weight: 300;
}

/* Image placeholders styled as dark panels with label */
.img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 220px;
  background: var(--surface3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--border2);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px dashed var(--border2);
}
.project-card:first-child .img-placeholder { min-height: 460px; }

/* ─── CTA STRIP ─── */
.cta-strip {
  background: var(--accent);
  padding: 64px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 60%);
}
.cta-strip h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  margin-bottom: 12px;
  position: relative;
}
.cta-strip p {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 28px;
  font-weight: 300;
  position: relative;
}
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: #fff;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: opacity 0.2s, transform 0.15s;
  position: relative;
}
.btn-white:hover { opacity: 0.9; transform: translateY(-1px); }

/* ─── FOOTER ─── */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 40px 32px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy {
  font-size: 0.82rem;
  color: var(--muted);
}
.footer-links {
  display: flex;
  gap: 20px;
}
.footer-links a {
  font-size: 0.82rem;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent-light); }

.about-body {
  margin-bottom: 8px;
}
.about-body p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 14px;
}
.about-body p:last-child { margin-bottom: 0; }

/* ─── INQUIRY ─── */
.inquiry-bg {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.inquiry-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr;
  gap: 48px;
  align-items: start;
}
.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-full { grid-column: 1 / -1; }
.form-field label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-field input,
.form-field textarea,
.form-field select {
  background: var(--surface2);
  border: 1px solid var(--border2);
  color: var(--text);
  padding: 11px 14px;
  font-family: 'Barlow', 'Noto Sans JP', sans-serif;
  font-size: 0.92rem;
  width: 100%;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(45,125,210,0.12);
}
.form-field textarea { min-height: 130px; resize: vertical; }
.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%237a90b0' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
  cursor: pointer;
}
.form-field select option { background: var(--surface2); }
.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.form-hint {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 4px;
}
.quick-contact-card {
  background: var(--surface2);
  border: 1px solid var(--border2);
  padding: 32px;
  position: sticky;
  top: 90px;
}
.quick-contact-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.qc-item {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.qc-item:last-child { border-bottom: none; }
.qc-item span {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 5px;
}
.qc-item a {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
  transition: color 0.2s;
}
.qc-item a:hover { color: var(--accent-light); }
.qc-item p { font-size: 0.88rem; color: var(--muted); font-weight: 300; }

@media (max-width: 900px) {
  .inquiry-grid { grid-template-columns: 1fr; }
  .quick-contact-card { position: static; }
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ─── REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
.reveal-d5 { transition-delay: 0.5s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-img { height: 300px; }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .project-card:first-child { grid-column: 1 / -1; }
  .project-card:first-child .img-placeholder { min-height: 300px; }
}

@media (max-width: 768px) {
  .topbar { display: none; }
  .nav-inner { padding: 0 20px; }
  .nav-links { display: none; }
  .hero-content { padding: 100px 20px 48px; }
  .hero h1 { font-size: 3rem; }
  .hero-desc { font-size: 0.95rem; }
  .hero-stats { flex-wrap: wrap; }
  .hero-stat { flex: 1; min-width: 120px; }
  .section { padding: 60px 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .project-card:first-child { grid-column: auto; }
  .project-card:first-child .img-placeholder { min-height: 240px; }
}
