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

:root {
  --black:   #0e0e0e;
  --dark:    #161616;
  --card:    #1e1e1e;
  --border:  #2a2a2a;
  --gold:    #b8966a;
  --gold-lt: #d4b48a;
  --white:   #f5f2ed;
  --mid:     #999;
  --muted:   #555;
  --serif:   'Cormorant Garamond', Georgia, serif;
  --sans:    'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s, padding 0.4s;
}
nav.scrolled, nav.solid {
  background: rgba(14,14,14,0.97);
  backdrop-filter: blur(12px);
  padding: 1rem 4rem;
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
}
.nav-logo span { color: var(--gold); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  color: var(--mid);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--gold);
  color: var(--black) !important;
  padding: 0.6rem 1.4rem;
  font-weight: 500 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--gold-lt) !important; color: var(--black) !important; }
.nav-phone {
  font-size: 0.8rem;
  color: var(--mid);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.nav-phone:hover { color: var(--gold); }

/* Services dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ↓'; font-size: 0.6rem; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 1rem);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(14,14,14,0.98);
  border: 1px solid var(--border);
  padding: 0.5rem 0;
  min-width: 220px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  transform: translateX(-50%) translateY(-4px);
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 0.6rem 1.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--mid) !important;
  transition: color 0.2s, background 0.2s;
}
.dropdown-menu a:hover { color: var(--white) !important; background: var(--card); }

/* ── HERO (homepage) ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: 6rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-image-placeholder { display: none; }
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 4rem 2rem;
  max-width: 900px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 2.5rem;
  height: 1px;
  background: var(--gold);
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-sub {
  font-size: 1rem;
  color: rgba(245,242,237,0.6);
  max-width: 520px;
  margin-bottom: 2.5rem;
  font-weight: 300;
  line-height: 1.8;
}
.hero-actions { display: flex; align-items: center; gap: 2rem; }
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  right: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 4rem;
  background: linear-gradient(to bottom, var(--muted), transparent);
}

/* ── PAGE HERO (interior pages) ── */
.page-hero {
  position: relative;
  height: 60vh;
  min-height: 440px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-top: 0;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,14,14,0.92) 0%, rgba(14,14,14,0.4) 60%, rgba(14,14,14,0.25) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 4rem 4rem;
  width: 100%;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.2rem;
}
.breadcrumb a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  max-width: 700px;
}
.page-hero h1 em { font-style: italic; color: var(--gold); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  text-decoration: none;
  padding: 1rem 2.2rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--gold-lt); transform: translateY(-1px); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--gold); }
.btn-ghost::after { content: '→'; transition: transform 0.2s; }
.btn-ghost:hover::after { transform: translateX(4px); }

/* ── SECTION BASICS ── */
section { padding: 7rem 4rem; }
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--gold);
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.section-title em { font-style: italic; color: var(--gold); }

/* ── INTRO STRIP ── */
.intro-strip {
  padding: 4rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
}
.intro-stat { padding: 1.5rem 3rem; text-align: center; }
.intro-stat-num {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.intro-stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mid);
}
.intro-divider { background: var(--border); align-self: stretch; }

/* ── ABOUT ── */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.about-image {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--card);
  overflow: hidden;
}
.about-image-inner { width: 100%; height: 100%; }
.about-image-inner img { width: 100%; height: 100%; object-fit: cover; }
.about-image::before {
  content: '';
  position: absolute;
  top: -1.5rem; left: -1.5rem; right: 1.5rem; bottom: 1.5rem;
  border: 1px solid var(--border);
  z-index: -1;
}
.about-tag {
  position: absolute;
  bottom: 2rem; right: -2rem;
  background: var(--gold);
  color: var(--black);
  padding: 1.2rem 1.5rem;
  text-align: center;
}
.about-tag-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
  display: block;
}
.about-tag-text {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: block;
  margin-top: 0.2rem;
}
.about-text p { color: rgba(245,242,237,0.65); margin-bottom: 1.5rem; font-size: 0.95rem; }
.about-text p:first-of-type { font-size: 1.05rem; color: rgba(245,242,237,0.85); }
.about-signature { margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.about-signature-name { font-family: var(--serif); font-size: 1.5rem; font-weight: 400; font-style: italic; }
.about-signature-title { font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-top: 0.2rem; }

/* ── SERVICE PAGE CONTENT ── */
.service-overview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.service-overview-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.service-overview-img img { width: 100%; height: 100%; object-fit: cover; }
.service-overview-text p {
  color: rgba(245,242,237,0.65);
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
  line-height: 1.8;
}
.service-overview-text p:first-of-type { font-size: 1.05rem; color: rgba(245,242,237,0.85); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 3rem;
}
.feature-item {
  background: var(--dark);
  padding: 2rem;
  transition: background 0.3s;
}
.feature-item:hover { background: var(--card); }
.feature-line {
  width: 2rem;
  height: 1px;
  background: var(--gold);
  margin-bottom: 1.2rem;
  transition: width 0.3s;
}
.feature-item:hover .feature-line { width: 3rem; }
.feature-title {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 0.6rem;
}
.feature-desc { font-size: 0.82rem; color: var(--mid); line-height: 1.7; }

/* ── SERVICES ── */
.services-section { background: var(--dark); }
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}
.service-card {
  background: var(--dark);
  padding: 2.5rem 2rem;
  transition: background 0.3s;
  text-decoration: none;
  display: block;
}
.service-card:hover { background: var(--card); }
.service-num {
  font-family: var(--serif);
  font-size: 0.9rem;
  color: var(--gold);
  opacity: 0.6;
  margin-bottom: 1.5rem;
}
.service-icon {
  width: 2.5rem;
  height: 1px;
  background: var(--gold);
  margin-bottom: 1.5rem;
  transition: width 0.3s;
}
.service-card:hover .service-icon { width: 3.5rem; }
.service-name {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 0.8rem;
  line-height: 1.2;
  color: var(--white);
}
.service-desc { font-size: 0.82rem; color: var(--mid); line-height: 1.7; }

/* ── PROCESS ── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  margin-top: 4rem;
}
.process-step { position: relative; }
.process-step::after {
  content: '';
  position: absolute;
  top: 1.5rem; right: -2rem;
  width: 4rem; height: 1px;
  background: var(--border);
}
.process-step:last-child::after { display: none; }
.process-num {
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 300;
  color: var(--border);
  line-height: 1;
  margin-bottom: 1.5rem;
}
.process-title { font-family: var(--serif); font-size: 1.4rem; font-weight: 400; margin-bottom: 0.8rem; }
.process-desc { font-size: 0.85rem; color: var(--mid); line-height: 1.8; }

/* ── PROJECTS ── */
.projects-section { background: var(--dark); padding-bottom: 0; }
.projects-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
}
.projects-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 400px 300px;
  gap: 2px;
}
.project-item { position: relative; overflow: hidden; background: var(--card); }
.project-item:first-child { grid-row: 1 / 3; }
.project-bg { width: 100%; height: 100%; transition: transform 0.6s ease; }
.project-bg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.project-item:hover .project-bg { transform: scale(1.04); }
.project-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,14,14,0.9) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex; align-items: flex-end;
  padding: 1.5rem;
}
.project-item:hover .project-overlay { opacity: 1; }
.project-label { font-family: var(--serif); font-size: 1.1rem; font-weight: 400; }
.project-loc { font-size: 0.72rem; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 0.2rem; }

/* ── AREAS ── */
.areas-section { border-top: 1px solid var(--border); }
.areas-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}
.areas-text p { color: rgba(245,242,237,0.6); font-size: 0.9rem; margin-bottom: 1.2rem; }

/* ── TESTIMONIAL ── */
.testimonial-section {
  background: var(--gold);
  padding: 6rem 4rem;
  text-align: center;
}
.testimonial-quote {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 300;
  color: var(--black);
  max-width: 800px;
  margin: 0 auto 2rem;
  line-height: 1.4;
  font-style: italic;
}
.testimonial-quote::before { content: '\201C'; }
.testimonial-quote::after { content: '\201D'; }
.testimonial-author { font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(14,14,14,0.6); }
.testimonial-author strong { color: var(--black); display: block; margin-bottom: 0.2rem; font-weight: 500; }

/* ── CTA ── */
.cta-section {
  text-align: center;
  padding: 8rem 4rem;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: 'EDGE';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--serif);
  font-size: 20vw;
  font-weight: 300;
  color: rgba(255,255,255,0.018);
  pointer-events: none;
  letter-spacing: 0.3em;
  white-space: nowrap;
}
.cta-section .section-title { margin-bottom: 1.2rem; }
.cta-section p { color: var(--mid); font-size: 0.9rem; max-width: 420px; margin: 0 auto 2.5rem; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 2rem; flex-wrap: wrap; }
.cta-phone { font-family: var(--serif); font-size: 1.4rem; color: var(--white); text-decoration: none; transition: color 0.2s; }
.cta-phone:hover { color: var(--gold); }

/* ── BLOG ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  margin-top: 3rem;
}
.blog-card {
  background: var(--dark);
  text-decoration: none;
  display: block;
  transition: background 0.3s;
}
.blog-card:hover { background: var(--card); }
.blog-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; display: block; }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-body { padding: 1.8rem; }
.blog-cat {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
  display: block;
}
.blog-card-title {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 0.8rem;
}
.blog-card-excerpt { font-size: 0.82rem; color: var(--mid); line-height: 1.7; }
.blog-card-meta {
  margin-top: 1.2rem;
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

/* Blog article */
.article-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 5rem 4rem;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.article-meta .cat { color: var(--gold); }
.article-body h2 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
  margin: 2.5rem 0 1rem;
  line-height: 1.2;
}
.article-body h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  margin: 2rem 0 0.8rem;
}
.article-body p { color: rgba(245,242,237,0.7); font-size: 0.95rem; line-height: 1.9; margin-bottom: 1.2rem; }
.article-body ul, .article-body ol {
  padding-left: 1.5rem;
  margin-bottom: 1.2rem;
  color: rgba(245,242,237,0.7);
  font-size: 0.95rem;
  line-height: 1.9;
}
.article-body li { margin-bottom: 0.4rem; }
.article-body strong { color: var(--white); font-weight: 500; }
.article-cta {
  background: var(--dark);
  border: 1px solid var(--border);
  padding: 2.5rem;
  margin: 3rem 0;
  text-align: center;
}
.article-cta h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 400; margin-bottom: 0.8rem; }
.article-cta p { color: var(--mid); font-size: 0.88rem; margin-bottom: 1.5rem; }

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 3rem 4rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
}
.footer-logo { font-family: var(--serif); font-size: 1.1rem; letter-spacing: 0.15em; text-transform: uppercase; }
.footer-logo span { color: var(--gold); }
.footer-copy { font-size: 0.72rem; color: var(--muted); text-align: center; letter-spacing: 0.05em; }
.footer-links { display: flex; gap: 2rem; justify-content: flex-end; list-style: none; }
.footer-links a {
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }

/* ── ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }

/* ── MOBILE ── */
@media (max-width: 900px) {
  nav { padding: 1.2rem 1.5rem; }
  nav.scrolled, nav.solid { padding: 0.9rem 1.5rem; }
  .nav-links { display: none; flex-direction: column; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--black); padding: 5rem 2rem 2rem; gap: 0; z-index: 999; overflow-y: auto; }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid var(--border); }
  .nav-links li a { display: block; padding: 1rem 0; font-size: 1.1rem; color: var(--white); }
  .nav-links .nav-phone { display: block; }
  .nav-links .nav-cta { display: block; margin: 1.5rem 0 0; text-align: center; }
  .nav-links .nav-dropdown .dropdown-menu { position: static; opacity: 1; visibility: visible; background: none; box-shadow: none; padding: 0 0 0.5rem 1rem; display: none; }
  .nav-links .nav-dropdown.open .dropdown-menu { display: block; }
  .nav-links .nav-dropdown .dropdown-menu a { padding: 0.5rem 0; font-size: 0.95rem; color: var(--mid); }
  .hamburger { display: flex; flex-direction: column; gap: 5px; cursor: pointer; z-index: 1000; padding: 4px; }
  .hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: all 0.3s; }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  section { padding: 4rem 1.5rem; }
  .hero-content { padding: 0 1.5rem 4rem; }
  .page-hero-content { padding: 0 1.5rem 3rem; }
  .hero-scroll { display: none; }
  .intro-strip { grid-template-columns: 1fr; padding: 2rem 1.5rem; }
  .intro-divider { display: none; }
  .intro-stat { padding: 1rem 0; border-bottom: 1px solid var(--border); }
  .intro-stat:last-child { border-bottom: none; }
  .about { grid-template-columns: 1fr; gap: 3rem; }
  .about-image { aspect-ratio: 4/5; }
  .about-image-inner img { object-fit: cover; object-position: center top; }
  .about-tag { right: 0; }
  .service-overview { grid-template-columns: 1fr; gap: 2.5rem; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .services-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .process-step::after { display: none; }
  .projects-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .project-item:first-child { grid-row: auto; }
  .areas-content { grid-template-columns: 1fr; gap: 2rem; }
  .blog-grid { grid-template-columns: 1fr; }
  .article-wrap { padding: 3rem 1.5rem; }
  .cta-section { padding: 5rem 1.5rem; }
  footer { grid-template-columns: 1fr; text-align: center; gap: 1rem; padding: 2rem 1.5rem; }
  .footer-links { justify-content: center; }
}
@media (max-width: 500px) {
  .services-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.4rem; }
}
