@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800&family=Barlow:wght@300;400;500;600&display=swap');

/* ===========================
   WOCON D.O.O. — style.css
   =========================== */



:root {
  --c-black:   #111111;
  --c-dark:    #1a1a1a;
  --c-mid:     #444444;
  --c-muted:   #888888;
  --c-border:  #e0e0e0;
  --c-bg:      #f8f7f5;
  --c-white:   #ffffff;
  --c-accent:  #d4500a;
  --c-accent2: #1b3a5c;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;
  --r: 3px;
  --transition: 0.25s ease;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.14);
  --container: 1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--c-black);
  background: var(--c-white);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 6rem 0; }
.section--gray { background: var(--c-bg); }
.section--dark { background: var(--c-dark); color: var(--c-white); }

.section-label {
  font-family: var(--font-display);
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--c-accent); display: block; margin-bottom: 0.75rem;
}
.section--dark .section-label { color: rgba(255,255,255,0.5); }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.1; }
h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.1rem; font-weight: 600; letter-spacing: 0.02em; }

.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-display); font-size: 0.9rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.9rem 2rem; border-radius: var(--r); transition: var(--transition);
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; stroke: currentColor; fill: none; stroke-width: 2; }
.btn-primary { background: var(--c-accent); color: #fff; }
.btn-primary:hover { background: #b8400a; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(212,80,10,0.35); }
.btn-outline { border: 2px solid currentColor; }
.btn-outline:hover { background: var(--c-white); color: var(--c-black); }
.btn-dark { background: var(--c-accent2); color: #fff; }
.btn-dark:hover { background: #254f80; transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--c-accent); }
.btn-white:hover { background: var(--c-bg); transform: translateY(-2px); }

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--c-border); transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav__logo { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.nav__logo-mark {
  width: 40px; height: 40px; background: var(--c-accent); border-radius: var(--r);
  display: grid; place-items: center; flex-shrink: 0;
}
.nav__logo-mark svg { width: 22px; height: 22px; fill: none; stroke: #fff; stroke-width: 2.2; }
.nav__logo-text {
  font-family: var(--font-display); font-size: 1.35rem; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--c-black); line-height: 1;
}
.nav__logo-text span { color: var(--c-accent); }
.nav__logo-sub {
  font-family: var(--font-body); font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--c-muted); display: block;
}
.nav__menu { display: flex; align-items: center; gap: 0.25rem; }
.nav__menu a {
  font-family: var(--font-display); font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-mid);
  padding: 0.5rem 1rem; border-radius: var(--r); transition: var(--transition); position: relative;
}
.nav__menu a::after {
  content: ''; position: absolute; bottom: 2px; left: 1rem; right: 1rem;
  height: 2px; background: var(--c-accent); transform: scaleX(0); transition: transform var(--transition);
}
.nav__menu a:hover, .nav__menu a.active { color: var(--c-black); }
.nav__menu a:hover::after, .nav__menu a.active::after { transform: scaleX(1); }
.nav__cta {
  font-family: var(--font-display); font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; background: var(--c-accent);
  color: #fff; padding: 0.55rem 1.3rem; border-radius: var(--r); margin-left: 1rem; transition: var(--transition);
}
.nav__cta:hover { background: #b8400a; }
.nav__burger { display: none; flex-direction: column; gap: 5px; width: 28px; padding: 4px 0; cursor: pointer; }
.nav__burger span { display: block; height: 2px; background: var(--c-black); border-radius: 2px; transition: var(--transition); }
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav__mobile {
  display: none; position: fixed; top: 72px; left: 0; right: 0;
  background: var(--c-white); border-bottom: 1px solid var(--c-border);
  padding: 1.5rem; z-index: 999; flex-direction: column; gap: 0.25rem; box-shadow: var(--shadow-lg);
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--c-black);
  padding: 0.9rem 1rem; border-bottom: 1px solid var(--c-border);
  display: flex; align-items: center; justify-content: space-between; transition: var(--transition);
}
.nav__mobile a:hover { color: var(--c-accent); padding-left: 1.4rem; }
.nav__mobile a:last-child { border-bottom: none; }
.page-offset { padding-top: 72px; }

/* HERO */
.hero {
  position: relative; min-height: calc(100vh - 72px);
  display: flex; align-items: center; overflow: hidden; background: var(--c-dark); color: #fff;
}
.hero__bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1800&q=70');
  background-size: cover; background-position: center; opacity: 0.3;
}
.hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(17,17,17,0.88) 40%, rgba(17,17,17,0.15) 100%);
}
.hero__content { position: relative; z-index: 1; max-width: 760px; padding: 5rem 0 7rem; }
.hero__tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-display); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--c-accent); margin-bottom: 1.5rem;
}
.hero__tag::before { content: ''; display: block; width: 32px; height: 2px; background: var(--c-accent); }
.hero h1 { margin-bottom: 1.5rem; text-transform: uppercase; }
.hero h1 em { display: block; font-style: normal; color: var(--c-accent); }
.hero__desc { font-size: 1.1rem; color: rgba(255,255,255,0.68); max-width: 520px; margin-bottom: 2.5rem; font-weight: 300; line-height: 1.8; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__stats { position: absolute; bottom: 0; left: 0; right: 0; z-index: 1; background: rgba(0,0,0,0.4); backdrop-filter: blur(6px); border-top: 1px solid rgba(255,255,255,0.1); }
.hero__stats-inner { display: grid; grid-template-columns: repeat(3, 1fr); }
.hero__stat { padding: 1.5rem 2rem; border-right: 1px solid rgba(255,255,255,0.1); text-align: center; }
.hero__stat:last-child { border-right: none; }
.hero__stat-num { display: block; font-family: var(--font-display); font-size: 2.2rem; font-weight: 800; color: var(--c-accent); line-height: 1; }
.hero__stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.5); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 0.3rem; display: block; }

/* ABOUT */
.about { padding: 6rem 0; }
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about__img-wrap { position: relative; }
.about__img-wrap img { width: 100%; height: 480px; object-fit: cover; border-radius: var(--r); }
.about__badge {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: var(--c-accent); color: #fff; padding: 1.5rem 2rem;
  border-radius: var(--r); font-family: var(--font-display); text-align: center; box-shadow: var(--shadow-lg);
}
.about__badge-num { display: block; font-size: 2.5rem; font-weight: 800; line-height: 1; }
.about__badge-text { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.85; }
.about__text .section-label { margin-bottom: 1rem; }
.about__text h2 { margin-bottom: 1.5rem; }
.about__text p { color: var(--c-mid); margin-bottom: 1.25rem; line-height: 1.8; }
.about__checklist { margin: 2rem 0; display: flex; flex-direction: column; gap: 0.75rem; }
.about__checklist li { display: flex; align-items: center; gap: 0.75rem; font-weight: 500; font-size: 0.95rem; }
.about__checklist li::before {
  content: '✓'; display: grid; place-items: center;
  width: 22px; height: 22px; background: var(--c-accent); color: #fff;
  border-radius: 50%; flex-shrink: 0; font-size: 0.72rem; font-weight: 800;
}

/* SERVICES GRID */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.service-card { background: var(--c-white); border: 1px solid var(--c-border); border-radius: var(--r); overflow: hidden; transition: var(--transition); display: flex; flex-direction: column; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card__img { width: 100%; height: 220px; object-fit: cover; }
.service-card__body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.service-card__icon { width: 48px; height: 48px; background: var(--c-bg); border-radius: var(--r); display: grid; place-items: center; margin-bottom: 1.25rem; }
.service-card__icon svg { width: 24px; height: 24px; stroke: var(--c-accent); fill: none; stroke-width: 2; }
.service-card h3 { font-size: 1.3rem; margin-bottom: 0.75rem; }
.service-card p { color: var(--c-mid); font-size: 0.93rem; line-height: 1.7; flex: 1; margin-bottom: 1.5rem; }
.service-card__link {
  font-family: var(--font-display); font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-accent);
  display: inline-flex; align-items: center; gap: 0.4rem; transition: gap var(--transition);
}
.service-card__link:hover { gap: 0.7rem; }
.service-card__link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.5; }

/* PROJECTS GRID */
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 3rem; }
.project-card { position: relative; border-radius: var(--r); overflow: hidden; aspect-ratio: 4/3; background: var(--c-border); }
.project-card--wide { grid-column: span 2; aspect-ratio: 16/9; }
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.project-card:hover img { transform: scale(1.06); }
.project-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(17,17,17,0.85) 0%, transparent 55%);
  display: flex; align-items: flex-end; padding: 1.5rem;
  opacity: 0; transition: opacity 0.3s ease;
}
.project-card:hover .project-card__overlay { opacity: 1; }
.project-card__category { font-family: var(--font-display); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--c-accent); display: block; margin-bottom: 0.3rem; }
.project-card__title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: #fff; line-height: 1.2; }

/* TESTIMONIALS */
.testimonials-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 3rem; }
.testimonial-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--r); padding: 2rem; }
.testimonial-card__stars { color: #f5c842; font-size: 1rem; margin-bottom: 1rem; letter-spacing: 3px; }
.testimonial-card p { font-size: 1rem; line-height: 1.75; color: rgba(255,255,255,0.78); font-style: italic; margin-bottom: 1.5rem; }
.testimonial-card__author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-card__avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid var(--c-accent); background: var(--c-border); }
.testimonial-card__name { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; color: #fff; display: block; }
.testimonial-card__loc { font-size: 0.8rem; color: rgba(255,255,255,0.4); }

/* CTA BANNER */
.cta-banner { background: var(--c-accent); padding: 5rem 0; }
.cta-banner__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-banner h2 { color: #fff; }
.cta-banner p { color: rgba(255,255,255,0.75); margin-top: 0.5rem; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start; }
.contact-info h2 { margin-bottom: 1rem; }
.contact-info > p { color: var(--c-mid); margin-bottom: 2rem; line-height: 1.75; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.contact-item__icon { width: 44px; height: 44px; background: var(--c-bg); border-radius: var(--r); display: grid; place-items: center; flex-shrink: 0; }
.contact-item__icon svg { width: 20px; height: 20px; stroke: var(--c-accent); fill: none; stroke-width: 2; }
.contact-item__label { font-family: var(--font-display); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--c-muted); display: block; margin-bottom: 0.2rem; }
.contact-item__val { font-weight: 500; font-size: 1rem; }
.contact-form { background: var(--c-bg); border-radius: var(--r); padding: 2.5rem; }
.contact-form h3 { margin-bottom: 2rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-family: var(--font-display); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--c-mid); margin-bottom: 0.5rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.85rem 1rem; border: 1.5px solid var(--c-border);
  border-radius: var(--r); font-family: var(--font-body); font-size: 0.95rem;
  color: var(--c-black); background: var(--c-white); transition: border-color var(--transition), box-shadow var(--transition); -webkit-appearance: none;
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--c-accent); box-shadow: 0 0 0 3px rgba(212,80,10,0.12); }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-group--row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-notice { font-size: 0.82rem; color: var(--c-muted); margin-top: 0.75rem; }
.map-wrap { margin-top: 4rem; border-radius: var(--r); overflow: hidden; border: 1px solid var(--c-border); }
.map-wrap iframe { display: block; width: 100%; height: 400px; border: none; }

/* PAGE HERO */
.page-hero { background: var(--c-dark); color: #fff; padding: 5rem 0 4rem; position: relative; overflow: hidden; }
.page-hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.18; }
.page-hero__content { position: relative; z-index: 1; }
.page-hero .section-label { margin-bottom: 0.75rem; }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
.page-hero p { margin-top: 1rem; color: rgba(255,255,255,0.6); max-width: 560px; font-weight: 300; font-size: 1.05rem; }
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; color: rgba(255,255,255,0.4); margin-bottom: 1.5rem; }
.breadcrumb a { color: rgba(255,255,255,0.6); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--c-accent); }
.breadcrumb span { color: rgba(255,255,255,0.25); }

/* SERVICES DETAIL */
.service-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; padding: 4rem 0; border-bottom: 1px solid var(--c-border); }
.service-detail:last-child { border-bottom: none; }
.service-detail--reverse .service-detail__img { order: 2; }
.service-detail--reverse .service-detail__body { order: 1; }
.service-detail img { width: 100%; height: 380px; object-fit: cover; border-radius: var(--r); }
.service-detail__body .section-label { margin-bottom: 0.75rem; }
.service-detail__body h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 1rem; }
.service-detail__body p { color: var(--c-mid); line-height: 1.8; margin-bottom: 1rem; }
.service-detail__features { margin: 1.5rem 0 2rem; display: flex; flex-direction: column; gap: 0.6rem; }
.service-detail__features li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.93rem; font-weight: 500; }
.service-detail__features li::before { content: ''; width: 6px; height: 6px; background: var(--c-accent); border-radius: 50%; flex-shrink: 0; }

/* SECTION HEADER */
.section-header { max-width: 600px; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p { color: var(--c-mid); line-height: 1.75; }
.section-header--center { max-width: 680px; margin: 0 auto; text-align: center; }
.section--dark .section-header p { color: rgba(255,255,255,0.6); }

.divider { display: flex; align-items: center; justify-content: space-between; margin-bottom: 3rem; gap: 2rem; }
.divider .btn { flex-shrink: 0; }

/* FOOTER */
.footer { background: #0e0e0e; color: rgba(255,255,255,0.65); padding: 5rem 0 0; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; padding-bottom: 4rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer__brand .nav__logo-text { color: #fff; }
.footer__brand .nav__logo-sub { color: rgba(255,255,255,0.3); }
.footer__tagline { margin-top: 1.25rem; font-size: 0.88rem; line-height: 1.7; color: rgba(255,255,255,0.4); }
.footer__social { display: flex; gap: 0.6rem; margin-top: 1.75rem; }
.footer__social a { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.12); border-radius: var(--r); display: grid; place-items: center; transition: var(--transition); }
.footer__social a:hover { background: var(--c-accent); border-color: var(--c-accent); }
.footer__social svg { width: 16px; height: 16px; stroke: rgba(255,255,255,0.65); fill: none; stroke-width: 2; }
.footer__col h4 { font-family: var(--font-display); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 1.25rem; }
.footer__col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__col ul a { font-size: 0.92rem; color: rgba(255,255,255,0.55); transition: color var(--transition), padding-left var(--transition); display: block; }
.footer__col ul a:hover { color: #fff; padding-left: 4px; }
.footer__contact-item { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.9rem; color: rgba(255,255,255,0.55); margin-bottom: 0.8rem; }
.footer__contact-item svg { width: 16px; height: 16px; stroke: var(--c-accent); fill: none; stroke-width: 2; margin-top: 2px; flex-shrink: 0; }
.footer__bottom { padding: 1.5rem 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer__copy { font-size: 0.82rem; color: rgba(255,255,255,0.28); }
.footer__copy a { color: rgba(255,255,255,0.4); }
.footer__copy a:hover { color: var(--c-accent); }

.text-accent { color: var(--c-accent); }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
.animate-up { animation: fadeUp 0.6s ease forwards; opacity: 0; }
.animate-up:nth-child(2) { animation-delay: 0.1s; }
.animate-up:nth-child(3) { animation-delay: 0.2s; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .about__grid { gap: 3rem; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  .section { padding: 4rem 0; }
  .nav__menu, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .hero { min-height: 85vh; }
  .hero__stats-inner { grid-template-columns: 1fr; }
  .hero__stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .hero__stat:last-child { border-bottom: none; }
  .about__grid { grid-template-columns: 1fr; }
  .about__badge { position: static; display: inline-block; margin-top: 1.5rem; }
  .about__img-wrap img { height: 320px; }
  .services-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr 1fr; }
  .project-card--wide { grid-column: span 2; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .cta-banner__inner { flex-direction: column; align-items: flex-start; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-group--row { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 1fr; gap: 2rem; }
  .service-detail--reverse .service-detail__img { order: 0; }
  .service-detail--reverse .service-detail__body { order: 0; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .divider { flex-direction: column; align-items: flex-start; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
  .projects-grid { grid-template-columns: 1fr; }
  .project-card--wide { grid-column: span 1; aspect-ratio: 4/3; }
  .footer__grid { grid-template-columns: 1fr; }
}
