/* ══════════════════════════════════════════════════════
   TAYLOR CONSTRUCTION — style.css
   Theme: Industrial-Refined · Warm Off-White + Charcoal + Gold
   ══════════════════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --cream:        #f5f0e8;
  --cream-dark:   #ede7d9;
  --charcoal:     #1c1a17;
  --charcoal-2:   #2c2a26;
  --charcoal-3:   #3d3a34;
  --gold:         #b8832a;
  --gold-light:   #d4a44a;
  --gold-pale:    #f0d8a0;
  --muted:        #7a7468;
  --border:       rgba(28,26,23,0.1);
  --border-dark:  rgba(28,26,23,0.18);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Outfit', system-ui, sans-serif;

  --nav-h:    72px;
  --radius:   8px;
  --radius-lg: 16px;
  --ease:     cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold-light); }
ul { list-style: none; }
input, button { font-family: inherit; }

/* ── Noise overlay ── */
.noise {
  pointer-events: none;
  position: fixed; inset: 0; z-index: 9999;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px;
}

/* ── Container ── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 7rem 0; }

/* ── Typography ── */
h1, h2, h3, h4, h5 { font-family: var(--font-display); line-height: 1.1; font-weight: 600; }
h1 { font-size: clamp(3.2rem, 7vw, 6rem); }
h2 { font-size: clamp(2.4rem, 5vw, 4rem); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.15rem; }
em { font-style: italic; color: var(--gold); }
p { line-height: 1.75; color: var(--muted); font-size: 1rem; }

/* ── Section labels ── */
.tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-body); font-size: 0.72rem;
  font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.tag::before { content: ''; width: 24px; height: 1.5px; background: var(--gold); display: block; }

.section-head { text-align: center; max-width: 640px; margin: 0 auto 4rem; }
.section-title { margin-bottom: 1rem; }
.section-sub { font-size: 1.05rem; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.8rem 1.8rem; border-radius: 4px;
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 600;
  letter-spacing: 0.02em; border: 2px solid transparent;
  cursor: pointer; transition: all .22s var(--ease); white-space: nowrap;
}
.btn-primary {
  background: var(--charcoal); color: var(--cream);
  border-color: var(--charcoal);
}
.btn-primary:hover {
  background: var(--gold); border-color: var(--gold); color: var(--charcoal);
}
.btn-ghost {
  background: transparent; color: var(--charcoal);
  border-color: var(--border-dark);
}
.btn-ghost:hover {
  border-color: var(--charcoal); color: var(--charcoal);
}
.btn-sm { padding: 0.6rem 1.3rem; font-size: 0.82rem; }
.btn-lg { padding: 1rem 2.2rem; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── Reveal animations ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.72s var(--ease), transform 0.72s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══ NAV ══ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav-h);
  background: rgba(245,240,232,0);
  backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: background .4s, backdrop-filter .4s, border-color .4s;
}
.nav.scrolled {
  background: rgba(245,240,232,0.92);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; max-width: 1180px; margin: 0 auto; padding: 0 2rem;
}
.nav-logo-img { height: 44px; width: auto; object-fit: contain; }
.nav-links {
  display: flex; gap: 0.25rem;
}
.nav-links a {
  padding: 0.45rem 0.9rem; color: var(--charcoal);
  font-size: 0.88rem; font-weight: 500; border-radius: var(--radius);
  transition: color .2s, background .2s;
}
.nav-links a:hover { background: var(--border); color: var(--charcoal); }
.nav-cta {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.55rem 1.2rem; background: var(--charcoal);
  color: var(--cream) !important; border-radius: 4px;
  font-size: 0.85rem; font-weight: 600;
  transition: background .2s;
}
.nav-cta:hover { background: var(--gold); color: var(--charcoal) !important; }
.nav-cta-icon { font-size: 0.9rem; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--charcoal); border-radius: 2px;
  transition: all .25s;
}
.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); }

/* Mobile menu */
.mobile-menu {
  display: none; position: absolute; top: var(--nav-h); left: 0; right: 0;
  background: rgba(245,240,232,0.98); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 1rem 2rem 1.5rem;
}
.mobile-menu.open { display: block; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 0.15rem; }
.mobile-link {
  display: block; padding: 0.7rem 0.5rem;
  color: var(--charcoal); font-size: 1rem; font-weight: 500;
  border-bottom: 1px solid var(--border);
}
.mobile-phone { color: var(--gold) !important; font-weight: 600; border: none; }

/* ══ HERO ══ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding-top: var(--nav-h); overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--border-dark) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-dark) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
  opacity: 0.5;
}
.hero-glow {
  position: absolute; top: 10%; left: -10%; width: 60%; aspect-ratio: 1;
  background: radial-gradient(ellipse, rgba(184,131,42,0.12) 0%, transparent 70%);
  pointer-events: none;
  animation: glow-drift 8s ease-in-out infinite alternate;
}
@keyframes glow-drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(80px, 40px) scale(1.1); }
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 1180px; margin: 0 auto; padding: 4rem 2rem 2rem;
  max-width: 820px; margin-left: 2rem;
}
@media (min-width: 900px) {
  .hero-content { margin-left: max(2rem, calc((100vw - 1180px) / 2)); }
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem;
}
.dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold); display: inline-block;
}
.hero-title {
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  line-height: 1.0; letter-spacing: -0.01em;
  margin-bottom: 1.5rem; color: var(--charcoal);
}
.hero-title em { display: block; }
.hero-sub {
  font-size: 1.1rem; max-width: 520px; margin-bottom: 2.5rem;
  color: var(--muted); line-height: 1.75;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-stats {
  position: relative; z-index: 1;
  display: flex; align-items: center; gap: 0;
  max-width: 1180px; margin: 3rem auto 0;
  padding: 2rem;
  margin-left: 2rem;
  border-top: 1px solid var(--border-dark);
}
@media (min-width: 900px) {
  .hero-stats { margin-left: max(2rem, calc((100vw - 1180px) / 2)); }
}
.hero-stat { padding-right: 2.5rem; }
.hero-stat-num {
  font-family: var(--font-display); font-size: 2.8rem; font-weight: 700;
  line-height: 1; color: var(--charcoal); margin-bottom: 0.25rem;
}
.hero-stat-num span { color: var(--gold); }
.hero-stat-label {
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--muted); font-weight: 500;
}
.hero-stat-divider {
  width: 1px; height: 48px; background: var(--border-dark); margin-right: 2.5rem;
}

.scroll-hint {
  position: absolute; bottom: 2rem; right: 3rem; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: var(--muted); font-size: 0.7rem; letter-spacing: 0.12em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-anim 2s ease-in-out infinite;
}
@keyframes scroll-anim {
  0%, 100% { transform: scaleY(1); opacity: 0.5; }
  50% { transform: scaleY(1.3); opacity: 1; }
}

/* ══ SERVICES ══ */
.services-section { background: var(--charcoal); }
.services-section .tag { color: var(--gold); }
.services-section .section-title { color: var(--cream); }
.services-section .section-sub { color: rgba(245,240,232,0.55); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-card {
  position: relative;
  padding: 2.5rem 2rem;
  background: var(--charcoal-2);
  transition: background .25s;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.service-card:hover { background: var(--charcoal-3); }
.service-card:hover::after { transform: scaleX(1); }

.service-num {
  font-family: var(--font-display); font-size: 0.8rem; color: var(--gold);
  letter-spacing: 0.1em; margin-bottom: 1.25rem; font-weight: 400;
}
.service-icon-wrap {
  width: 44px; height: 44px; color: rgba(245,240,232,0.4);
  margin-bottom: 1.25rem; transition: color .25s;
}
.service-card:hover .service-icon-wrap { color: var(--gold-light); }
.service-icon-wrap svg { width: 100%; height: 100%; }
.service-card h3 {
  font-family: var(--font-display); font-size: 1.4rem;
  color: var(--cream); margin-bottom: 0.65rem;
}
.service-card p { color: rgba(245,240,232,0.5); font-size: 0.9rem; }

.service-card--cta {
  background: linear-gradient(135deg, rgba(184,131,42,0.12), rgba(184,131,42,0.04));
  border-left: 1px solid rgba(184,131,42,0.25);
  display: flex; align-items: center; justify-content: center;
}
.service-card--cta::after { display: none; }
.service-cta-inner { text-align: center; }
.service-cta-label {
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--gold); margin-bottom: 0.6rem; font-weight: 600;
}
.service-card--cta h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
.service-card--cta p { font-size: 0.88rem; margin-bottom: 1.5rem; }

/* ══ ABOUT ══ */
.about-section { background: var(--cream-dark); }
.about-inner {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 5rem; align-items: center;
}
.about-visual {}
.about-img-frame {
  aspect-ratio: 3/2; border-radius: var(--radius-lg);
  overflow: hidden; background: var(--cream);
  border: 1px solid var(--border-dark);
  display: flex; align-items: center; justify-content: center;
  padding: 2.5rem; margin-bottom: 1.5rem;
  box-shadow: 0 20px 60px rgba(28,26,23,0.1);
}
.about-logo-large { max-height: 180px; width: auto; object-fit: contain; margin: 0 auto; }
.about-credentials { display: flex; flex-direction: column; gap: 0.75rem; }
.cred-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 0.9rem 1.1rem; background: var(--cream);
  border: 1px solid var(--border); border-radius: var(--radius);
}
.cred-icon { font-size: 1.1rem; flex-shrink: 0; }
.cred-item strong { display: block; font-size: 0.88rem; font-weight: 600; color: var(--charcoal); }
.cred-item span { font-size: 0.8rem; color: var(--muted); }

.about-content { display: flex; flex-direction: column; gap: 1.25rem; }
.about-content > p { color: var(--muted); }
.about-quote {
  border-left: 3px solid var(--gold);
  padding: 1rem 1.5rem;
  background: var(--cream);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-display); font-size: 1.15rem;
  color: var(--charcoal); font-style: italic; line-height: 1.6;
}
.about-quote cite {
  display: block; margin-top: 0.75rem;
  font-family: var(--font-body); font-size: 0.78rem;
  font-style: normal; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold); font-weight: 600;
}
.about-values { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.value-pill {
  padding: 0.4rem 1rem; border-radius: 100px;
  border: 1.5px solid var(--border-dark); font-size: 0.8rem;
  font-weight: 500; color: var(--charcoal);
  transition: all .2s;
}
.value-pill:hover { background: var(--charcoal); color: var(--cream); border-color: var(--charcoal); }

/* ══ WORK ══ */
.work-section {}
.work-categories {
  display: flex; gap: 0.5rem; justify-content: center;
  margin-bottom: 2.5rem; flex-wrap: wrap;
}
.work-cat {
  padding: 0.5rem 1.2rem; border-radius: 100px;
  border: 1.5px solid var(--border-dark); background: transparent;
  font-size: 0.82rem; font-weight: 500; color: var(--muted);
  cursor: pointer; transition: all .2s;
}
.work-cat:hover, .work-cat.active {
  background: var(--charcoal); border-color: var(--charcoal); color: var(--cream);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 240px 240px;
  gap: 1rem;
}
.work-card { border-radius: var(--radius-lg); overflow: hidden; position: relative; }
.work-card--tall { grid-row: span 2; }
.work-card--wide { grid-column: span 2; }
.work-card-inner {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  position: relative; transition: transform .4s var(--ease);
}
.work-card:hover .work-card-inner { transform: scale(1.03); }
.work-placeholder-icon {
  font-size: 3.5rem; opacity: 0.35;
  transition: opacity .3s;
}
.work-card:hover .work-placeholder-icon { opacity: 0.55; }
.work-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,26,23,0.85) 0%, transparent 55%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.5rem; opacity: 0; transition: opacity .3s;
}
.work-card:hover .work-card-overlay { opacity: 1; }
.work-cat-tag {
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--gold-pale);
  margin-bottom: 0.35rem; display: block;
}
.work-card-overlay h4 { font-family: var(--font-display); color: #fff; font-size: 1.2rem; margin-bottom: 0.15rem; }
.work-card-overlay p { color: rgba(255,255,255,0.6); font-size: 0.8rem; margin: 0; }
.work-card.hidden { display: none; }

.work-note {
  text-align: center; margin-top: 2rem;
  font-size: 0.88rem; color: var(--muted);
}

/* ══ WHY ══ */
.why-section { background: var(--charcoal); }
.why-inner { display: grid; grid-template-columns: 360px 1fr; gap: 5rem; align-items: start; }
.why-content {}
.why-content .tag { color: var(--gold); }
.why-content .section-title { color: var(--cream); }
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border: 1px solid rgba(255,255,255,0.07); border-radius: var(--radius-lg); overflow: hidden;
}
.why-item {
  padding: 2rem;
  border-right: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background .2s;
}
.why-item:nth-child(even) { border-right: none; }
.why-item:nth-last-child(-n+2) { border-bottom: none; }
.why-item:hover { background: rgba(255,255,255,0.03); }
.why-num {
  font-family: var(--font-display); font-size: 0.8rem; color: var(--gold);
  letter-spacing: 0.1em; margin-bottom: 0.75rem;
}
.why-item h4 { font-family: var(--font-display); color: var(--cream); font-size: 1.15rem; margin-bottom: 0.6rem; }
.why-item p { font-size: 0.88rem; color: rgba(245,240,232,0.45); }

/* ══ CONTACT ══ */
.contact-section { background: var(--cream-dark); }
.contact-inner { display: grid; grid-template-columns: 1fr 420px; gap: 5rem; align-items: start; }
.contact-left > p { color: var(--muted); margin-bottom: 0; }
.contact-methods { display: flex; flex-direction: column; gap: 1rem; margin-top: 0.5rem; }
.contact-method {
  display: flex; align-items: center; gap: 1.25rem;
  padding: 1.1rem 1.25rem; background: var(--cream);
  border: 1px solid var(--border); border-radius: var(--radius);
  transition: border-color .2s, box-shadow .2s; color: var(--charcoal);
}
.contact-method:hover { border-color: var(--gold); box-shadow: 0 4px 16px rgba(184,131,42,0.1); color: var(--charcoal); }
.contact-method-icon { font-size: 1.25rem; flex-shrink: 0; }
.contact-method strong { display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 0.2rem; font-weight: 600; }
.contact-method span { font-size: 0.95rem; font-weight: 500; color: var(--charcoal); }

.contact-card {
  background: var(--charcoal); border-radius: var(--radius-lg);
  padding: 2.5rem; box-shadow: 0 24px 64px rgba(28,26,23,0.18);
  position: sticky; top: calc(var(--nav-h) + 1.5rem);
}
.contact-card-logo { margin-bottom: 1.5rem; }
.contact-card-logo img {
  height: 56px; width: auto; object-fit: contain;
  filter: brightness(1.1);
}
.contact-card h3 {
  font-family: var(--font-display); font-size: 1.7rem; color: var(--cream); margin-bottom: 0.5rem;
}
.contact-card > p { color: rgba(245,240,232,0.5); font-size: 0.9rem; margin-bottom: 1.75rem; }
.contact-card .btn-primary {
  background: var(--gold); border-color: var(--gold); color: var(--charcoal);
  font-size: 1rem; padding: 0.9rem 1.5rem;
}
.contact-card .btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); }
.contact-card-badges {
  display: flex; gap: 0.5rem; justify-content: center;
  margin-top: 1.25rem; flex-wrap: wrap;
}
.mini-badge {
  padding: 0.3rem 0.75rem; border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 0.72rem; font-weight: 600; color: rgba(245,240,232,0.5);
  letter-spacing: 0.04em;
}

/* ══ FOOTER ══ */
.footer { background: var(--charcoal); padding: 4rem 0 0; }
.footer-inner {
  display: grid; grid-template-columns: 1fr 2fr; gap: 4rem;
  padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-logo-img { height: 48px; width: auto; object-fit: contain; filter: brightness(1.15); }
.footer-brand p { font-size: 0.85rem; color: rgba(245,240,232,0.4); line-height: 1.6; }
.footer-phone { font-size: 1.05rem; font-weight: 600; color: var(--gold) !important; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer-col h5 {
  font-family: var(--font-body); font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: rgba(245,240,232,0.35); margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul li a, .footer-col ul li span {
  font-size: 0.88rem; color: rgba(245,240,232,0.55); transition: color .2s;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  padding: 1.5rem 0;
  font-size: 0.78rem; color: rgba(245,240,232,0.25); text-align: center;
}

/* ══ RESPONSIVE ══ */
@media (max-width: 1024px) {
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-frame { max-width: 480px; }
  .why-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .contact-card { position: static; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 5rem 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-content { padding: 3rem 1.5rem 2rem; margin-left: 0; }
  .hero-stats { margin-left: 0; padding: 1.5rem; flex-wrap: wrap; gap: 1.5rem; }
  .hero-stat-divider { display: none; }
  .scroll-hint { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .work-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .work-card--tall, .work-card--wide { grid-column: auto; grid-row: auto; }
  .work-grid .work-card { height: 200px; }
  .why-grid { grid-template-columns: 1fr; }
  .why-item:nth-child(even) { border-right: 1px solid rgba(255,255,255,0.07); }
  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .container { padding: 0 1.25rem; }
}

@media (max-width: 480px) {
  .services-grid { border-radius: var(--radius); }
  .work-grid { grid-template-columns: 1fr; }
  .work-grid .work-card { height: 200px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .footer-links { grid-template-columns: 1fr; }
  .contact-card-badges { flex-wrap: wrap; }
}
