/* ========================================
   LOADING SCREEN
   ======================================== */
#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #0d1e3d;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .7s ease .1s, visibility .7s ease .1s;
}
#loader.out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
}
.loader-logo-card {
  background: transparent;
  padding: 0;
  opacity: 0;
  transform: translateY(20px);
  animation: loaderLogoIn .55s cubic-bezier(.4,0,.2,1) .1s forwards;
}
.loader-logo-card img {
  height: 160px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 4px rgba(255,255,255,.95)) drop-shadow(0 0 8px rgba(255,255,255,.7));
}
@keyframes loaderLogoIn {
  to { opacity: 1; transform: translateY(0); }
}
.loader-track {
  width: 300px;
  height: 5px;
  background: rgba(255,255,255,.1);
  border-radius: 3px;
  overflow: hidden;
  display: flex;
  opacity: 0;
  animation: loaderTrackIn .3s ease .5s forwards;
}
@keyframes loaderTrackIn { to { opacity: 1; } }
.loader-fill-blue {
  height: 100%;
  width: 0;
  background: #1a3a8a;
  border-radius: 3px 0 0 3px;
  animation: loaderFillBlue 1.0s cubic-bezier(.4,0,.2,1) .6s forwards;
}
.loader-fill-gold {
  height: 100%;
  width: 0;
  background: #e8a000;
  animation: loaderFillGold .7s cubic-bezier(.4,0,.2,1) 1.2s forwards;
}
@keyframes loaderFillBlue { to { width: 65%; } }
@keyframes loaderFillGold { to { width: 35%; } }

/* ========================================
   RESET & BASE
   ======================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --accent:       #c8520a;
  --accent-light: #e8682a;
  --accent-dark:  #a04008;
  --dark:         #121212;
  --dark-2:       #1e1e1e;
  --dark-3:       #2a2a2a;
  --mid:          #4a4a4a;
  --light:        #f5f3f0;
  --white:        #ffffff;
  --text:         #2c2c2c;
  --text-muted:   #6b6b6b;
  --radius:       12px;
  --radius-lg:    20px;
  --shadow:       0 4px 24px rgba(0,0,0,.10);
  --shadow-lg:    0 12px 48px rgba(0,0,0,.16);
  --transition:   .35s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  max-width: 100vw;
}

img { display: block; max-width: 100%; height: auto; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  width: min(1160px, 100% - 2rem);
  margin-inline: auto;
}

.section    { padding: 100px 0; }
.section-alt { background: var(--light); }
.section-dark{ background: var(--dark-2); }

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .75rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-sub {
  max-width: 560px;
  margin: .75rem auto 0;
  color: var(--text-muted);
}

h1,h2,h3 { line-height: 1.2; }
h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 2.8rem); }

.accent { color: var(--accent); }

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,82,10,.35);
}
.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.6);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff;
}
.btn-full { width: 100%; justify-content: center; }
.btn-nav {
  background: var(--accent);
  color: #fff !important;
  padding: .55rem 1.3rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .875rem;
  transition: var(--transition);
}
.btn-nav:hover { background: var(--accent-light); transform: translateY(-1px); }

.link-arrow {
  font-size: .875rem;
  font-weight: 600;
  color: var(--accent);
  transition: var(--transition);
  display: inline-block;
  margin-top: .75rem;
}
.link-arrow:hover { transform: translateX(4px); }

/* ========================================
   SCROLL REVEAL
   ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: .1s !important; }
.delay-2 { transition-delay: .2s !important; }
.delay-3 { transition-delay: .3s !important; }
.delay-4 { transition-delay: .4s !important; }
.delay-5 { transition-delay: .5s !important; }

/* ========================================
   NAVBAR
   ======================================== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
  padding: 0;
}
#navbar.scrolled {
  background: rgba(18,18,18,.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,.3);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 160px;
  padding: 0 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 500;
}
.logo strong { font-weight: 800; }
.logo-icon { color: var(--accent); font-size: 1.6rem; line-height: 1; }
.logo-img { height: 138px; width: auto; object-fit: contain; display: block; filter: drop-shadow(0 0 3px rgba(255,255,255,.9)) drop-shadow(0 0 6px rgba(255,255,255,.6)); }
.footer-logo { height: 52px; width: auto; object-fit: contain; margin-bottom: .5rem; display: block; filter: drop-shadow(0 0 3px rgba(255,255,255,.8)) drop-shadow(0 0 6px rgba(255,255,255,.5)); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  font-weight: 500;
  transition: color var(--transition);
}
.nav-links a:hover { color: #fff; }
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: rgba(18,18,18,.98);
  backdrop-filter: blur(12px);
  overflow: hidden;
  max-height: 0;
  transition: max-height .4s ease;
}
.mobile-menu.open { max-height: 400px; }
.mobile-menu a {
  padding: 1rem 1.5rem;
  color: rgba(255,255,255,.85);
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background var(--transition);
}
.mobile-menu a:hover { background: rgba(255,255,255,.06); color: #fff; }

/* ========================================
   HERO
   ======================================== */
#hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
#hero-video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(12,12,12,.78) 0%,
    rgba(20,20,20,.55) 60%,
    rgba(12,12,12,.4) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 0 max(1rem, 4vw);
  padding-top: 160px;
}
.hero-badge {
  display: inline-block;
  background: rgba(200,82,10,.25);
  border: 1px solid rgba(200,82,10,.5);
  color: #ffb88a;
  padding: .35rem 1rem;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(6px);
}
#hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 24px rgba(0,0,0,.4);
}
.hero-tagline {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: clamp(.75rem, 1.5vw, .9rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,.6);
  letter-spacing: .08em;
  margin-bottom: .3rem;
  text-transform: lowercase;
}
.hero-sub {
  font-size: clamp(.95rem, 2vw, 1.15rem);
  color: rgba(255,255,255,.8);
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; gap: .1rem; }
.stat strong { font-size: 1.75rem; font-weight: 800; color: #fff; line-height: 1; }
.stat span   { font-size: .78rem; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .06em; }
.stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,.25); }

.scroll-down {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.scroll-arrow {
  width: 28px; height: 28px;
  border-right: 2px solid rgba(255,255,255,.6);
  border-bottom: 2px solid rgba(255,255,255,.6);
  transform: rotate(45deg);
  animation: bounce 2s infinite;
  margin: 0 auto;
}
@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50%       { transform: rotate(45deg) translateY(8px); }
}

/* ========================================
   TRUST BAR
   ======================================== */
.trust-bar {
  background: var(--dark);
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255,255,255,.05);
}
.trust-quote {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: .25rem 0;
}
.trust-quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  line-height: .5;
  color: var(--accent);
  margin-bottom: .75rem;
  display: block;
}
.trust-quote-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(.95rem, 2vw, 1.1rem);
  font-style: italic;
  color: rgba(255,255,255,.85);
  line-height: 1.75;
  margin-bottom: .9rem;
}
.trust-quote-author {
  font-size: .75rem;
  color: rgba(255,255,255,.45);
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* ========================================
   SERVICES
   ======================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.07);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200,82,10,.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(200,82,10,.2);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: .6rem;
}
.service-card p { color: var(--text-muted); font-size: .93rem; line-height: 1.6; }

/* ========================================
   ABOUT
   ======================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-image {
  position: relative;
}
.about-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--accent);
  color: #fff;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 8px 24px rgba(200,82,10,.4);
}
.about-badge strong { display: block; font-size: 2rem; font-weight: 800; line-height: 1; }
.about-badge span   { font-size: .75rem; line-height: 1.4; opacity: .9; }
.about-text { display: flex; flex-direction: column; gap: 1.25rem; }
.about-text p { color: var(--text-muted); }
.about-list { display: flex; flex-direction: column; gap: .5rem; }
.about-list li { font-weight: 500; color: var(--text); }

/* ========================================
   GALLERY
   ======================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 260px);
  gap: 1rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--dark-3);
  cursor: pointer;
}
.gallery-wide {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,12,12,.75) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: #fff;
  font-size: .875rem;
  font-weight: 600;
}
/* Real project gallery */
.gallery-grid-real {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px;
  gap: 1rem;
}
.gallery-grid-real .gallery-item:nth-child(1) { grid-column: 1; grid-row: 1; }
.gallery-grid-real .gallery-item:nth-child(2) { grid-column: 2; grid-row: 1; }
.gallery-grid-real .gallery-item:nth-child(3) { grid-column: 3; grid-row: 1; }
.gallery-grid-real .gallery-item:nth-child(4) { grid-column: 1; grid-row: 2; }
.gallery-grid-real .gallery-wide-real        { grid-column: 2 / 4; grid-row: 2; }

@media (max-width: 900px) {
  .gallery-grid-real {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-grid-real .gallery-item { grid-column: auto !important; grid-row: auto !important; height: 220px; }
  .gallery-grid-real .gallery-wide-real { grid-column: 1 / 3 !important; }
}
@media (max-width: 600px) {
  .gallery-grid-real { grid-template-columns: 1fr; }
  .gallery-grid-real .gallery-wide-real { grid-column: 1 !important; }
}

.placeholder-tile {
  background: linear-gradient(135deg, var(--dark-3) 0%, var(--mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.placeholder-tile::after {
  content: '🏠';
  font-size: 3rem;
  opacity: .3;
}

/* ========================================
   REVIEWS
   ======================================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.review-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}
.review-card:hover {
  border-color: rgba(200,82,10,.3);
  transform: translateY(-4px);
}
.stars { color: var(--accent); font-size: 1.1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.review-card p { color: rgba(255,255,255,.7); font-style: italic; line-height: 1.7; margin-bottom: 1.25rem; }
.reviewer { display: flex; flex-direction: column; gap: .15rem; }
.reviewer strong { color: #fff; font-size: .925rem; }
.reviewer span   { color: rgba(255,255,255,.45); font-size: .8rem; display: none; }

/* ========================================
   CONTACT
   ======================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}
.contact-info h2 { margin-bottom: 1rem; }
.contact-info > p { color: var(--text-muted); margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 1rem; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--radius);
  transition: background var(--transition);
}
a.contact-item:hover { background: var(--light); }
.contact-icon { font-size: 1.4rem; width: 2.5rem; text-align: center; }
.contact-item div { display: flex; flex-direction: column; gap: .1rem; }
.contact-item strong { font-size: .875rem; font-weight: 700; color: var(--text); }
.contact-item span   { font-size: .93rem; color: var(--text-muted); }

/* Form */
.contact-form-wrap {
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  min-width: 0;
  overflow: hidden;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.1rem; }
.form-group label { font-size: .83rem; font-weight: 600; color: var(--text); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: .8rem 1rem;
  border: 1.5px solid rgba(0,0,0,.12);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: .93rem;
  color: var(--text);
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.form-group input[type=checkbox] {
  appearance: auto;
  -webkit-appearance: checkbox;
  padding: 0;
  border: none;
  background: none;
  width: 18px;
  height: 18px;
  cursor: pointer;
  flex-shrink: 0;
  accent-color: var(--accent);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(200,82,10,.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-check { flex-direction: row; align-items: flex-start; }
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  cursor: pointer;
  font-size: .83rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.checkbox-label input[type=checkbox] {
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--accent);
}
.label-optional { font-weight: 400; color: var(--text-muted); font-size: .78rem; }
.file-input {
  padding: .6rem .8rem;
  border: 1.5px dashed rgba(0,0,0,.18);
  border-radius: var(--radius);
  background: #fafafa;
  cursor: pointer;
  font-size: .88rem;
  color: var(--text-muted);
}
.file-input:hover { border-color: var(--accent); }
.file-hint { font-size: .75rem; color: var(--text-muted); margin-top: .25rem; display: block; }
.field-error { font-size: .78rem; color: #d93025; min-height: 1.2em; display: block; }
.form-success {
  background: #e6f4ea;
  border: 1px solid #aed6b5;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-size: .93rem;
  color: #1e7e34;
  margin-top: 1rem;
  text-align: center;
}

/* ========================================
   FOOTER
   ======================================== */
footer {
  background: var(--dark);
  color: rgba(255,255,255,.6);
  padding: 4rem 0 2rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand { display: flex; flex-direction: column; gap: .5rem; }
.footer-brand .logo-icon { color: var(--accent); font-size: 1.6rem; }
.footer-brand span:first-of-type { color: #fff; font-size: 1.1rem; }
.footer-brand p { font-size: .85rem; line-height: 1.6; margin-top: .5rem; }
.footer-links { display: flex; flex-direction: column; gap: .6rem; }
.footer-links h4 { color: #fff; font-size: .875rem; font-weight: 700; margin-bottom: .25rem; }
.footer-links a { font-size: .85rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 1.5rem;
  font-size: .8rem;
}

/* ========================================
   VIDEO FALLBACK POSTER
   ======================================== */
#hero-video[poster] {
  background-size: cover;
  background-position: center;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .mobile-menu { display: flex; }
  .nav-inner { height: 80px; }
  .logo-img { height: 64px; }
  .hero-content { padding-top: 80px; }
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-image img { height: 340px; }
  .about-badge { right: 1rem; bottom: -1rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-wide { grid-column: 1 / 3; grid-row: auto; height: 260px; }
}
@media (max-width: 600px) {
  .section { padding: 70px 0; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { text-align: center; justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 1.5rem 1rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-wide { grid-column: 1; height: 220px; }
  .gallery-item { height: 200px; }
  .trust-items { gap: 1rem 1.5rem; }
  .hero-stats { gap: 1rem; }
  .stat strong { font-size: 1.4rem; }
}
