/* ============================================================
   Rose Painting — site stylesheet
   Colors pulled from the company logo (red) plus a complementary
   deep teal accent. Light mode only.
============================================================ */

:root {
  --red-700: #c20d0c;
  --red-600: #e5100f;
  --red-500: #ff2a29;
  --red-400: #ff5f5e;
  --teal-700: #0e4f52;
  --teal-600: #14676a;
  --ink-900: #1c2024;
  --ink-700: #3d444a;
  --ink-500: #6b7278;
  --bg: #ffffff;
  --bg-alt: #f4f3f1;
  --bg-dark: #16191c;
  --border: #e3e1dd;
  --white: #ffffff;

  --font-head: "Oswald", "Arial Narrow", Arial, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 6px 20px rgba(0,0,0,.12);
  --shadow-lg: 0 14px 40px rgba(0,0,0,.22);
  --radius: 6px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

html, body {
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .03em;
  line-height: 1.15;
  margin: 0 0 .5em;
  color: var(--ink-900);
}

h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.5rem, 3.4vw, 2.3rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; color: var(--ink-700); }

a { color: var(--teal-700); text-decoration: none; }
a:hover { color: var(--red-700); }
a:visited { color: inherit; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

section { padding: 64px 0; }
.section-alt { background: var(--bg-alt); }

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 40px;
}
.section-head .kicker {
  display: inline-block;
  color: var(--red-600);
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .85rem;
  margin-bottom: 8px;
}
.section-head p { margin-bottom: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: .95rem;
  font-weight: 500;
  border: 2px solid transparent;
  line-height: 1;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary,
.btn-primary:link,
.btn-primary:visited {
  background: var(--red-600);
  color: #ffffff !important;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover,
.btn-primary:visited:hover {
  background: var(--red-700);
  color: #ffffff !important;
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--ink-900); }

.btn-teal {
  background: var(--teal-700);
  color: var(--white);
}
.btn-teal:hover { background: var(--teal-600); color: var(--white); }

.btn-dark-outline {
  background: transparent;
  border-color: var(--ink-900);
  color: var(--ink-900);
}
.btn-dark-outline:hover { background: var(--ink-900); color: var(--white); }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Top contact bar ---------- */
.topbar {
  background: var(--ink-900);
  color: #cfd3d6;
  font-size: .85rem;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar a { color: #fff; font-weight: 600; }
.topbar a:hover { color: var(--red-400); }
.topbar .area-note { color: #9aa0a5; }

/* ---------- Header ---------- */
.site-header {
  background: #FFF6E5;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 500;
  box-shadow: var(--shadow-sm);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  gap: 20px;
  min-height: 108px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.brand img {
  height: 72px;
  width: auto;
  flex-shrink: 0;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 18px;
  margin: 0;
  padding: 0;
}
.main-nav a {
  color: var(--ink-900);
  font-family: var(--font-head);
  text-transform: uppercase;
  font-size: 1.05rem;
  letter-spacing: .04em;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--red-700);
  border-bottom-color: var(--red-700);
}
.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-cta .btn {
  height: 48px;
  padding: 0 22px;
  font-size: .85rem;
  border: none;
  box-sizing: border-box;
}
.mobile-contact-link { display: none; }
.nav-close { display: none; }

.nav-toggle {
  display: none;
  position: relative;
  z-index: 410;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 26px;
  height: 3px;
  background: var(--ink-900);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: var(--white);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18,20,22,.72) 0%, rgba(18,20,22,.55) 45%, rgba(18,20,22,.85) 100%);
}
.hero .container { position: relative; z-index: 2; }
.hero .kicker {
  display: inline-block;
  background: var(--red-600);
  padding: 6px 14px;
  border-radius: 3px;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .8rem;
  margin-bottom: 18px;
}
.hero h1 { color: var(--white); margin-bottom: .3em; }
.hero p.lead { color: #e7e9ea; font-size: 1.15rem; max-width: 560px; }
.hero .btn-row { margin-top: 28px; }

.hero-page {
  min-height: 46vh;
}
.hero-page h1 { color: var(--white); }

/* ---------- Trust strip ---------- */
.trust-strip {
  background: var(--ink-900);
  color: var(--white);
  padding: 18px 0;
}
.trust-strip .container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 16px;
  text-align: center;
}
.trust-strip .item {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .95rem;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #f1f1f1;
}
.trust-strip .item svg { flex-shrink: 0; color: var(--red-500); }

/* ---------- Services grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--red-600);
}
.service-card .icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--red-600);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.service-card h3 { margin-bottom: .4em; }
.service-card p { margin-bottom: 0; font-size: .95rem; }

/* ---------- Why-us ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}
.why-grid .item { padding: 10px; }
.why-grid .icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  border: 2px solid var(--teal-700);
  color: var(--teal-700);
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-grid h3 { margin-bottom: .3em; }
.why-grid p { font-size: .92rem; }

/* ---------- Homepage carousel ---------- */
.carousel {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--ink-900);
}
.carousel-track-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .7s ease;
}
.carousel-slide.active { opacity: 1; z-index: 1; }
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.carousel-slide figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 18px 22px 16px;
  background: linear-gradient(0deg, rgba(0,0,0,.72), rgba(0,0,0,0));
  color: #fff;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: .95rem;
}
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(18,20,22,.55);
  color: #fff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s ease;
}
.carousel-arrow:hover { background: var(--red-600); }
.carousel-arrow.prev { left: 14px; }
.carousel-arrow.next { right: 14px; }
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 16px 0;
  background: var(--ink-900);
}
.carousel-dots button {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: none;
  background: #55595d;
  cursor: pointer;
  padding: 0;
}
.carousel-dots button.active { background: var(--red-600); }
.carousel-cta { text-align: center; margin-top: 34px; }

/* ---------- Service area ---------- */
.area-wrap {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 46px;
  align-items: center;
}
.city-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.city-list li {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--red-600);
  padding: 9px 16px;
  border-radius: 4px;
  font-family: var(--font-head);
  text-transform: uppercase;
  font-size: .85rem;
  letter-spacing: .03em;
  box-shadow: var(--shadow-sm);
}
.area-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 6px solid var(--white);
  outline: 1px solid var(--border);
}
.area-map iframe { width: 100%; height: 100%; min-height: 320px; border: 0; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--red-600);
  background-image: linear-gradient(120deg, var(--red-700), var(--red-600));
  color: var(--white);
  text-align: center;
}
.cta-banner h2 { color: var(--white); }
.cta-banner p { color: #ffe1e1; font-size: 1.05rem; }
.cta-banner .phone-big {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  color: var(--white);
  display: block;
  margin: 10px 0 26px;
}
.cta-banner .btn-row { justify-content: center; }
.cta-banner .btn-primary { background: var(--ink-900); }
.cta-banner .btn-primary:hover { background: #000; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-dark);
  color: #b7bbbe;
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
}
.footer-brand img {
  height: 92px;
  border-radius: 4px;
  background: #fff;
  padding: 6px;
}
.site-footer h4 {
  color: #fff;
  font-size: .95rem;
  letter-spacing: .06em;
  margin-bottom: 16px;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 10px; }
.site-footer a { color: #b7bbbe; }
.site-footer a:hover { color: var(--red-400); }
.footer-contact li { display: flex; align-items: center; gap: 10px; }
.bottom-bar {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding: 18px 0;
  font-size: .82rem;
  color: #7c8085;
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative;
  padding: 90px 0 60px;
  background-size: cover;
  background-position: center;
  color: #fff;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(18,20,22,.68);
}
.page-hero .container { position: relative; z-index: 2; text-align: center; }
.page-hero h1 { color: #fff; }
.page-hero p { color: #dcdedf; max-width: 620px; margin: 0 auto; }
.breadcrumb {
  font-family: var(--font-head);
  text-transform: uppercase;
  font-size: .8rem;
  letter-spacing: .08em;
  color: var(--red-500);
  margin-bottom: 10px;
}

/* ---------- About page ---------- */
.about-flex {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 50px;
  align-items: center;
}
.about-flex img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.stat-row {
  display: flex;
  gap: 30px;
  margin-top: 26px;
  flex-wrap: wrap;
}
.stat-row .stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 2.1rem;
  color: var(--red-600);
}
.stat-row .stat span {
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--ink-500);
}

/* ---------- Services page detail list ---------- */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  align-items: center;
  padding: 46px 0;
  border-bottom: 1px solid var(--border);
}
.service-detail:last-child { border-bottom: none; }
.service-detail.reverse .service-detail-img { order: 2; }
.service-detail.full-width { grid-template-columns: 1fr; }
.service-detail.full-width ul.check-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px 40px;
}
.service-detail-img img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}
.service-detail ul.check-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}
.service-detail ul.check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  color: var(--ink-700);
}
.service-detail ul.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  color: var(--white);
  background: var(--teal-700);
  width: 19px; height: 19px;
  border-radius: 50%;
  font-size: .72rem;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  top: 2px;
}

/* ---------- Gallery ---------- */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.gallery-filters button {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 10px 20px;
  border-radius: 30px;
  font-family: var(--font-head);
  text-transform: uppercase;
  font-size: .82rem;
  letter-spacing: .05em;
  cursor: pointer;
  transition: all .15s ease;
}
.gallery-filters button:hover { border-color: var(--red-700); color: var(--red-700); }
.gallery-filters button.active {
  background: var(--red-600);
  border-color: var(--red-600);
  color: #fff;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 16px;
}
.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  background: var(--ink-900);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item .tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(18,20,22,.75);
  color: #fff;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: .68rem;
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 2;
}
.gallery-item .zoom-hint {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(18,20,22,0);
  color: transparent;
  transition: all .2s ease;
}
.gallery-item:hover .zoom-hint {
  background: rgba(18,20,22,.28);
  color: #fff;
}
.gallery-item.hidden { display: none; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(10,11,12,.94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox.open { display: flex; }
.lightbox-inner {
  position: relative;
  max-width: 1100px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lightbox-inner img {
  max-height: 78vh;
  max-width: 100%;
  width: auto;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
  touch-action: pan-y;
}
.lightbox-caption {
  color: #eee;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-top: 14px;
  font-size: .95rem;
  text-align: center;
}
.lightbox-count {
  color: #8b8f92;
  font-size: .8rem;
  margin-top: 4px;
}
.lightbox-close {
  position: absolute;
  top: -6px; right: -6px;
  background: var(--red-600);
  color: #fff;
  border: none;
  width: 42px; height: 42px;
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  z-index: 5;
}
.lightbox-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.12);
  color: #fff;
  border: none;
  width: 50px; height: 50px;
  border-radius: 50%;
  font-size: 1.6rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1001;
}
.lightbox-arrow:hover { background: var(--red-600); }
.lightbox-arrow.prev { left: 18px; }
.lightbox-arrow.next { right: 18px; }
#lightbox.open ~ .lightbox-arrow { display: flex; }

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.contact-grid.single {
  grid-template-columns: 1fr;
  justify-items: center;
}
.contact-grid.single .contact-card {
  max-width: 480px;
  width: 100%;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.contact-card .icon {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: var(--red-600);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.contact-card .big-link {
  display: block;
  font-family: var(--font-head);
  font-size: 1.7rem;
  color: var(--ink-900);
  margin: 10px 0 18px;
}
.contact-card .big-link:hover { color: var(--red-700); }
.hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: .95rem;
}
.hours-list li:last-child { border-bottom: none; }
.hours-list span:first-child { color: var(--ink-900); font-weight: 600; }

/* ---------- Responsive ---------- */
@media (max-width: 1280px) {
  .main-nav { gap: 12px; }
  .main-nav ul { gap: 12px; }
  .main-nav a { font-size: .97rem; }
  .header-cta .btn { height: 44px; padding: 0 18px; font-size: .8rem; }
}

@media (max-width: 900px) {
  .about-flex,
  .service-detail,
  .service-detail.reverse .service-detail-img,
  .area-wrap,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .service-detail.reverse .service-detail-img { order: 0; }
  .service-detail.full-width ul.check-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 800px) {
  .topbar .container { justify-content: center; text-align: center; }
  .main-nav ul { flex-direction: column; align-items: flex-start; gap: 4px; }
  .main-nav {
    position: fixed;
    top: 0; right: 0;
    width: min(300px, 82vw);
    height: 100%;
    background: #FFF6E5;
    flex-direction: column;
    align-items: stretch;
    padding: 76px 28px 32px;
    box-shadow: -8px 0 30px rgba(0,0,0,.25);
    transform: translateX(100%);
    transition: transform .28s ease;
    z-index: 400;
    gap: 24px;
    overflow-y: auto;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav a { display: block; padding: 10px 0; }
  .header-cta { display: none; }
  .mobile-contact-link {
    display: block;
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    font-family: var(--font-head);
    text-transform: uppercase;
    letter-spacing: .04em;
    font-size: 1rem;
    color: var(--red-700);
    text-align: center;
  }
  .nav-close {
    display: block;
    position: absolute;
    top: 18px;
    right: 18px;
    background: none;
    border: none;
    font-size: 2.1rem;
    line-height: 1;
    color: var(--ink-900);
    cursor: pointer;
    padding: 6px;
  }
  .nav-toggle { display: flex; }
  .nav-toggle.open { opacity: 0; pointer-events: none; }
  .nav-overlay {
    display: none;
    position: fixed; inset: 0;
    background: rgba(0,0,0,.55);
    z-index: 300;
  }
  .nav-overlay.open { display: block; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-about, .footer-links, .footer-service { display: none; }
  .hero { min-height: auto; padding: 40px 0; }
  #lightbox.open ~ .lightbox-arrow { display: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

@media (max-width: 560px) {
  section { padding: 44px 0; }
}
