/* ============================================================
   ARC Enerji — Design tokens
   ============================================================ */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --ink:        #14181C;
  --ink-2:      #262C32;
  --red:        #E12A1D;
  --red-d:      #B31E13;
  --steel:      #5C6670;
  --steel-l:    #8B949C;
  --paper:      #FAFAF8;
  --paper-2:    #F1F2F0;
  --line:       #E1E3E1;
  --line-d:     #3A4048;
  --white:      #FFFFFF;

  --font-display: 'Archivo', sans-serif;
  --font-body:    'IBM Plex Sans', sans-serif;

  --nav-h: 84px;
  --container: 1220px;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.01em;
  text-wrap: balance;
  color: var(--ink);
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }

/* ============================================================
   Eyebrow / labels
   ============================================================ */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-weight: 600; font-size: 13px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--red);
  margin-bottom: 14px;
}
.eyebrow::before { content: ''; width: 22px; height: 2px; background: var(--red); }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; font-family: var(--font-body); font-weight: 600; font-size: 15px;
  border-radius: 3px; border: 1.5px solid transparent; transition: all 0.2s;
  white-space: nowrap;
}
.btn-red { background: var(--red); color: var(--white); }
.btn-red:hover { background: var(--red-d); }
.btn-outline { border-color: var(--line); color: var(--ink); }
.btn-outline:hover { border-color: var(--ink); background: var(--ink); color: var(--white); }
.btn-outline-w { border-color: rgba(255,255,255,0.4); color: var(--white); }
.btn-outline-w:hover { border-color: var(--white); background: var(--white); color: var(--ink); }
.btn-arrow::after { content: '\2192'; transition: transform 0.2s; }
.btn-arrow:hover::after { transform: translateX(3px); }

/* ============================================================
   Nav
   ============================================================ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: transparent;
  transition: background 0.3s, height 0.3s, box-shadow 0.3s;
}
nav.scrolled {
  background: var(--white);
  height: 68px;
  box-shadow: 0 1px 0 var(--line);
}
.nav-inner {
  width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo-wrap { display: flex; align-items: center; }
.logo-wrap img { height: 34px; width: auto; transition: height 0.3s; }
nav.scrolled .logo-wrap img { height: 28px; }
.logo-wrap.on-light img { filter: none; }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: flex; align-items: center; gap: 5px;
  padding: 10px 16px; font-size: 14.5px; font-weight: 600;
  color: var(--white); border-radius: 3px; transition: color 0.2s;
}
nav.scrolled .nav-links > li > a { color: var(--ink); }
.nav-links > li > a:hover { color: var(--red); }
.nav-links .caret { font-size: 10px; opacity: 0.6; }

.dropdown {
  position: absolute; top: 100%; left: 0; margin-top: 8px;
  background: var(--white); border-radius: 6px; box-shadow: 0 18px 40px rgba(20,24,28,0.16);
  min-width: 300px; padding: 10px; opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: all 0.18s; border-top: 3px solid var(--red);
}
.nav-links > li:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: block; padding: 11px 14px; font-size: 14px; font-weight: 500;
  color: var(--ink-2); border-radius: 4px; line-height: 1.4;
}
.dropdown a:hover { background: var(--paper-2); color: var(--red); }
.dropdown .dd-disabled { color: var(--steel-l); cursor: default; }
.dropdown .dd-disabled:hover { background: none; color: var(--steel-l); }
.dropdown .dd-disabled .soon {
  display: inline-block; margin-left: 8px; font-size: 10px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--steel-l);
}

.nav-cta { margin-left: 8px; }
.nav-toggle {
  display: none; background: none; border: none; font-size: 26px; color: var(--white);
}
nav.scrolled .nav-toggle { color: var(--ink); }

/* ============================================================
   Page header (interior pages)
   ============================================================ */
.page-hero {
  position: relative; height: 320px; margin-top: 0;
  display: flex; align-items: flex-end;
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
  background-size: cover; background-position: center;
  overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,24,28,0.55) 0%, rgba(20,24,28,0.88) 100%);
}
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, black, transparent);
}
.page-hero-inner { position: relative; z-index: 2; width: 100%; padding: 0 32px 40px; max-width: var(--container); margin: 0 auto; }
.breadcrumb { font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 14px; font-weight: 500; }
.breadcrumb a { color: rgba(255,255,255,0.85); }
.breadcrumb a:hover { color: var(--red); }
.page-hero h1 { color: var(--white); font-size: clamp(30px, 4vw, 44px); }
.page-hero .sub { color: rgba(255,255,255,0.72); margin-top: 10px; font-size: 16px; max-width: 640px; }

/* ============================================================
   Sections
   ============================================================ */
.section { padding: 96px 0; }
.section.tight { padding: 72px 0; }
.section.dark { background: var(--ink); color: rgba(255,255,255,0.85); }
.section.dark h2, .section.dark h3 { color: var(--white); }
.section.steel { background: var(--paper-2); }
.section-head { max-width: 680px; margin-bottom: 48px; }
.section-h { font-size: clamp(26px, 3.4vw, 38px); line-height: 1.15; }
.section-p { color: var(--steel); font-size: 16px; margin-top: 14px; line-height: 1.7; }
.section.dark .section-p { color: rgba(255,255,255,0.62); }

/* ============================================================
   Hero (home)
   ============================================================ */
.hero {
  position: relative; height: 100vh; min-height: 640px; overflow: hidden;
  display: flex; align-items: center; background: var(--ink);
}
.hero-video-wrap { position: absolute; inset: 0; z-index: 0; background: var(--ink); }
.hero-video-wrap video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.9; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(100deg, rgba(20,24,28,0.78) 0%, rgba(20,24,28,0.4) 55%, rgba(20,24,28,0.18) 100%);
}
.hero-grid {
  position: absolute; inset: 0; z-index: 1;
  background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero-content { position: relative; z-index: 2; max-width: var(--container); margin: 0 auto; padding: 0 32px; width: 100%; text-align: center; }
.hero-eyebrow {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px; color: rgba(255,255,255,0.92);
  font-weight: 700; font-size: 13px; letter-spacing: 0.24em; text-transform: uppercase; margin: 0 auto 26px;
}
.hero h1 {
  color: var(--white); font-size: clamp(32px, 5.4vw, 62px); line-height: 1.1; max-width: 920px; margin: 0 auto;
  white-space: normal;
}
.hero h1 .ltr { color: var(--red); }
.hero-sub { color: rgba(255,255,255,0.94); font-size: 17px; max-width: 520px; margin: 24px auto 0; line-height: 1.7; font-weight: 500; }
.hero-actions { display: flex; gap: 14px; margin-top: 38px; flex-wrap: wrap; justify-content: center; }

@keyframes heroReveal { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
.hero-eyebrow, .hero h1, .hero-sub, .hero-actions {
  animation: heroReveal 0.9s cubic-bezier(0.16,1,0.3,1) both;
}
.hero-eyebrow { animation-delay: 0.1s; }
.hero h1 { animation-delay: 0.25s; }
.hero-sub { animation-delay: 0.45s; }
.hero-actions { animation-delay: 0.62s; }
@media (prefers-reduced-motion: reduce) {
  .hero-eyebrow, .hero h1, .hero-sub, .hero-actions { animation: none; }
}
.hero-stats {
  position: absolute; z-index: 2; left: 0; right: 0; bottom: 0; border-top: 1px solid rgba(255,255,255,0.14);
  background: linear-gradient(180deg, rgba(20,24,28,0) 0%, rgba(20,24,28,0.55) 55%, rgba(20,24,28,0.72) 100%);
}
.hero-stats-inner { max-width: var(--container); margin: 0 auto; padding: 26px 32px; display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.hstat-num { font-family: var(--font-display); font-weight: 800; font-size: 30px; color: var(--white); font-variant-numeric: tabular-nums; }
.hstat-num span { color: var(--red); }
.hstat-label { font-size: 12.5px; color: rgba(255,255,255,0.88); margin-top: 4px; font-weight: 600; }

/* ============================================================
   Service cards (home)
   ============================================================ */
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: var(--line); border: 1px solid var(--line); margin-top: 8px; }
.svc-card {
  position: relative; background: var(--ink); aspect-ratio: 4/5; overflow: hidden; display: flex;
  flex-direction: column; justify-content: flex-end; padding: 26px;
}
.svc-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.55; transition: transform 0.5s, opacity 0.3s; }
.svc-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,24,28,0.15), rgba(20,24,28,0.92)); }
.svc-card:hover img { transform: scale(1.06); opacity: 0.4; }
.svc-num { position: relative; z-index: 2; font-family: var(--font-display); font-weight: 800; color: rgba(255,255,255,0.35); font-size: 14px; margin-bottom: auto; font-variant-numeric: tabular-nums; }
.svc-title { position: relative; z-index: 2; color: var(--white); font-family: var(--font-display); font-weight: 700; font-size: 19px; line-height: 1.25; }
.svc-range { position: relative; z-index: 2; color: var(--red); font-size: 12.5px; font-weight: 600; margin-top: 6px; font-variant-numeric: tabular-nums; }
.svc-card.disabled { opacity: 0.5; cursor: default; }
.svc-card.disabled:hover img { transform: none; }

/* ============================================================
   Split content block (hakkımızda / hizmet detay)
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split.rev { direction: rtl; } .split.rev > * { direction: ltr; }
.split-media { position: relative; }
.split-media img { border-radius: 4px; width: 100%; aspect-ratio: 4/3.2; object-fit: cover; }
.split-media .frame { position: absolute; top: 20px; left: -20px; right: 20px; bottom: -20px; border: 2px solid var(--red); z-index: -1; border-radius: 4px; }
.split-body p { color: var(--steel); margin-top: 16px; font-size: 15.5px; line-height: 1.75; }
.split-body p:first-of-type { margin-top: 0; }
.split-body .lead { font-size: 18px; color: var(--ink); font-weight: 500; line-height: 1.6; }

.fact-row { display: flex; gap: 40px; margin-top: 36px; flex-wrap: wrap; }
.fact { border-left: 2px solid var(--red); padding-left: 16px; }
.fact-num { font-family: var(--font-display); font-weight: 800; font-size: 32px; font-variant-numeric: tabular-nums; }
.fact-label { font-size: 13px; color: var(--steel); margin-top: 4px; }

/* ============================================================
   News / feed cards
   ============================================================ */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 8px; }
.news-card { display: block; }
.news-img { aspect-ratio: 16/10.5; overflow: hidden; border-radius: 4px; }
.news-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.news-card:hover .news-img img { transform: scale(1.05); }
.news-date { font-size: 12.5px; color: var(--red); font-weight: 600; margin-top: 16px; letter-spacing: 0.03em; text-transform: uppercase; }
.news-title { font-family: var(--font-display); font-weight: 700; font-size: 18px; margin-top: 8px; line-height: 1.35; }
.news-excerpt { font-size: 14px; color: var(--steel); margin-top: 8px; line-height: 1.6; }
.news-more { font-size: 13.5px; font-weight: 600; color: var(--ink); margin-top: 14px; display: inline-flex; align-items: center; gap: 6px; }
.news-more::after { content: '\2192'; }

/* ============================================================
   Article / prose (haber & hukuk sayfaları)
   ============================================================ */
.article-wrap { max-width: 760px; margin: 0 auto; }
.article-meta { display: flex; gap: 18px; align-items: center; font-size: 13.5px; color: var(--steel); margin-bottom: 28px; flex-wrap: wrap; }
.article-meta .src { color: var(--red); font-weight: 600; }
.article-cover { border-radius: 4px; overflow: hidden; margin-bottom: 40px; aspect-ratio: 16/9; }
.article-cover img { width: 100%; height: 100%; object-fit: cover; }
.prose p { font-size: 16.5px; line-height: 1.85; color: var(--ink-2); margin-bottom: 22px; }
.prose h3 { font-size: 21px; margin: 40px 0 16px; }
.prose blockquote {
  border-left: 3px solid var(--red); padding: 4px 0 4px 22px; margin: 32px 0;
  font-size: 17px; color: var(--ink); font-weight: 500; font-style: normal;
}
.prose .q {
  background: var(--paper-2); border-radius: 4px; padding: 22px 26px; margin: 30px 0 18px;
  font-family: var(--font-display); font-weight: 700; font-size: 15.5px; color: var(--ink);
}
.prose strong { color: var(--ink); }
.article-source-box {
  margin-top: 48px; padding: 20px 24px; background: var(--paper-2); border-radius: 4px;
  font-size: 13.5px; color: var(--steel);
}
.article-source-box a { color: var(--red); font-weight: 600; }

/* ============================================================
   Referans tabloları
   ============================================================ */
.ref-summary { display: flex; gap: 40px; margin: 8px 0 40px; flex-wrap: wrap; }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 6px; }
table.ref-table { width: 100%; border-collapse: collapse; font-size: 14.5px; min-width: 640px; }
table.ref-table thead th {
  text-align: left; background: var(--ink); color: var(--white); font-family: var(--font-display);
  font-weight: 700; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 15px 20px; position: sticky; top: 0;
}
table.ref-table th:first-child, table.ref-table td:first-child { width: 90px; font-variant-numeric: tabular-nums; }
table.ref-table th:last-child, table.ref-table td:last-child { width: 160px; }
table.ref-table tbody td { padding: 13px 20px; border-top: 1px solid var(--line); color: var(--ink-2); }
table.ref-table tbody tr:nth-child(even) { background: var(--paper-2); }
table.ref-table tbody td:first-child { color: var(--red); font-weight: 700; }
table.ref-table tbody td:nth-child(2) { font-weight: 500; color: var(--ink); }

/* ============================================================
   Galeri
   ============================================================ */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }
.gallery-grid a { display: block; aspect-ratio: 1/1; overflow: hidden; position: relative; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s; }
.gallery-grid a::after { content: ''; position: absolute; inset: 0; background: rgba(225,42,29,0); transition: background 0.25s; }
.gallery-grid a:hover::after { background: rgba(225,42,29,0.18); }
.gallery-grid a:hover img { transform: scale(1.07); }
.gallery-grid a { cursor: zoom-in; }

/* ============================================================
   Lightbox / slideshow
   ============================================================ */
.lightbox {
  position: fixed; inset: 0; z-index: 500; background: rgba(10,12,14,0.96);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity 0.25s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-img-wrap { max-width: 88vw; max-height: 82vh; }
.lightbox-img-wrap img { max-width: 88vw; max-height: 82vh; width: auto; height: auto; object-fit: contain; border-radius: 2px; }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18); color: var(--white);
  display: flex; align-items: center; justify-content: center; border-radius: 50%; cursor: pointer; transition: background 0.2s;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: var(--red); border-color: var(--red); }
.lightbox-close { top: 26px; right: 26px; width: 44px; height: 44px; font-size: 20px; }
.lightbox-prev, .lightbox-next { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 22px; }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-count {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.6); font-size: 13px; font-variant-numeric: tabular-nums; letter-spacing: 0.05em;
}
@media (max-width: 600px) {
  .lightbox-prev { left: 8px; width: 42px; height: 42px; }
  .lightbox-next { right: 8px; width: 42px; height: 42px; }
  .lightbox-close { top: 14px; right: 14px; width: 38px; height: 38px; }
}

/* ============================================================
   İletişim
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 0; border: 1px solid var(--line); border-radius: 6px; overflow: hidden; }
.contact-info { background: var(--ink); color: var(--white); padding: 48px 40px; }
.contact-info h3 { color: var(--white); font-size: 22px; margin-bottom: 24px; }
.cinfo-row { display: flex; gap: 16px; padding: 18px 0; border-top: 1px solid rgba(255,255,255,0.12); }
.cinfo-row:first-of-type { border-top: none; }
.cinfo-label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.5); margin-bottom: 4px; font-weight: 600; }
.cinfo-val { font-size: 15px; font-weight: 500; }
.cinfo-val a:hover { color: var(--red); }
.contact-map { min-height: 340px; }
.contact-map iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }
.contact-form-wrap { padding: 48px 40px; background: var(--white); grid-column: 1 / -1; border-top: 1px solid var(--line); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 8px; color: var(--ink-2); }
.form-field input, .form-field textarea {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--line); border-radius: 4px;
  font-family: var(--font-body); font-size: 14.5px; background: var(--paper); transition: border-color 0.2s;
}
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--red); }
.form-field textarea { resize: vertical; min-height: 120px; }

/* ============================================================
   Footer
   ============================================================ */
footer { background: var(--ink); color: rgba(255,255,255,0.6); }
.footer-top { max-width: var(--container); margin: 0 auto; padding: 72px 32px 48px; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-brand img { height: 30px; margin-bottom: 18px; }
.footer-tagline { font-size: 14px; line-height: 1.75; max-width: 300px; }
.footer-col h4 { color: var(--white); font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 18px; font-weight: 700; }
.footer-col a, .footer-col span { display: block; font-size: 14px; margin-bottom: 12px; color: rgba(255,255,255,0.6); }
.footer-col a:hover { color: var(--red); }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 34px; height: 34px; border: 1px solid rgba(255,255,255,0.2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 13px; color: rgba(255,255,255,0.7);
}
.footer-social a:hover { border-color: var(--red); color: var(--red); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); }
.footer-bottom-inner { max-width: var(--container); margin: 0 auto; padding: 22px 32px; display: flex; justify-content: space-between; font-size: 12.5px; flex-wrap: wrap; gap: 8px; }
.footer-bottom a:hover { color: var(--red); }

/* ============================================================
   CTA band
   ============================================================ */
.cta-band { background: var(--red); }
.cta-band-inner {
  max-width: var(--container); margin: 0 auto; padding: 56px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.cta-band h2 { color: var(--white); font-size: clamp(22px, 2.6vw, 30px); }
.cta-band p { color: rgba(255,255,255,0.85); margin-top: 6px; font-size: 15px; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white); padding: 12px; gap: 0; box-shadow: 0 18px 40px rgba(20,24,28,0.16);
  }
  .nav-links.open > li { width: 100%; }
  .nav-links.open > li > a { color: var(--ink); width: 100%; }
  .nav-links.open .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; margin: 4px 0 8px; display: none; }
  .nav-links.open > li.open .dropdown { display: block; }
  .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: 1fr; }
  .split, .split.rev { grid-template-columns: 1fr; direction: ltr; }
  .hero-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .svc-grid { grid-template-columns: 1fr; }
  .hero-stats-inner { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; padding: 56px 24px 36px; }
  .container, .nav-inner, .page-hero-inner { padding: 0 20px; }
  .contact-info, .contact-form-wrap { padding: 32px 24px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}
