/* ============================================
   HOUSE OF ART — Sandra Balević
   Pure Editorial Style
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ivory:      #FFFCF8;
  --cream:      #F5F0E8;
  --warm:       #EDE8E0;
  --gold:       #B8960C;
  --gold-light: #D4AF37;
  --charcoal:   #1C1C1C;
  --text:       #2A2A2A;
  --muted:      #6A6258;
  --border:     rgba(184,150,12,0.2);

  --ff-serif: 'Cormorant Garamond', Georgia, serif;
  --ff-sans:  'Jost', system-ui, sans-serif;

  --max-w: 1200px;
  --nav-h: 92px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-sans);
  font-weight: 300;
  line-height: 1.7;
  color: var(--text);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

/* --- Typography helpers --- */
.eyebrow {
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--ff-serif);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--charcoal);
}

.section-title em {
  font-style: italic;
  font-weight: 400;
}

.section-sub {
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 0.75rem;
}

.divider-gold {
  width: 50px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem 0;
  opacity: 0.7;
}

.divider-gold.small {
  width: 30px;
  margin: 1rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header .divider-gold {
  margin: 1.25rem auto;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-dark {
  background: var(--charcoal);
  color: var(--ivory);
}

.btn-dark:hover {
  background: #333;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--charcoal);
}

.btn-outline:hover {
  background: var(--charcoal);
  color: var(--ivory);
  transform: translateY(-2px);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--ivory);
  transform: translateY(-2px);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.nav.scrolled {
  background: rgba(255, 252, 248, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo-img {
  height: 72px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  color: var(--gold) !important;
  border: 1px solid var(--gold);
  padding: 0.5rem 1.25rem;
}

.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--ivory) !important;
}

.nav-cta::after { display: none !important; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-burger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--charcoal);
  transition: all 0.3s;
}

.nav-burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-mobile {
  display: none;
  background: var(--ivory);
  border-top: 1px solid var(--border);
  padding: 1.5rem 2rem 2rem;
}

.nav-mobile.open { display: block; }

.nav-mobile ul {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.nav-mobile a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  padding-top: var(--nav-h);
  background: var(--ivory);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.hero-text { max-width: 520px; }

.hero-title {
  font-family: var(--ff-serif);
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--charcoal);
  margin-bottom: 0;
}

.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--charcoal);
}

.title-rule {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
}

.rule-line {
  flex: 1;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
  max-width: 60px;
}

.rule-text {
  font-family: var(--ff-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}

.hero-sub {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Hero visual */
.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-frame {
  position: relative;
  width: 100%;
  max-width: 460px;
}

.hero-frame::before {
  content: '';
  position: absolute;
  top: -16px;
  right: -16px;
  bottom: 16px;
  left: 16px;
  border: 1px solid var(--gold);
  opacity: 0.3;
  z-index: 0;
  border-radius: 2px;
}

.hero-img {
  position: relative;
  z-index: 1;
  border-radius: 2px;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  z-index: 2;
  background: var(--ivory);
  border: 1px solid var(--border);
  padding: 1.2rem 1.5rem;
  text-align: center;
  box-shadow: 0 8px 32px rgba(184,150,12,0.1);
}

.badge-num {
  display: block;
  font-family: var(--ff-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.badge-text {
  font-size: 0.68rem;
  letter-spacing: 1px;
  color: var(--muted);
  text-transform: uppercase;
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: 7rem 0;
  background: var(--cream);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.about-frame {
  position: relative;
}

.about-frame::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 70%;
  height: 70%;
  border: 1px solid var(--gold);
  opacity: 0.25;
  z-index: 0;
  border-radius: 2px;
}

.about-img {
  position: relative;
  z-index: 1;
  border-radius: 2px;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.about-text p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.9;
  margin-bottom: 1.25rem;
}

.about-text p:last-of-type { margin-bottom: 0; }

/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: 7rem 0;
  background: var(--ivory);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.service-card {
  background: var(--cream);
  padding: 2.5rem 2rem;
  border: 1px solid transparent;
  border-radius: 2px;
  transition: all 0.35s ease;
  position: relative;
}

.service-card:hover {
  border-color: var(--border);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(184,150,12,0.08);
}

.service-card--featured {
  background: var(--ivory);
  border: 1px solid var(--border);
  box-shadow: 0 10px 40px rgba(184,150,12,0.08);
}

.service-card--featured:hover {
  border-color: var(--gold);
  box-shadow: 0 20px 60px rgba(184,150,12,0.15);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--warm);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-card--featured .service-icon {
  background: rgba(184,150,12,0.1);
}

.service-card h3 {
  font-family: var(--ff-serif);
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.8;
}

.service-list {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.service-list li {
  font-size: 0.82rem;
  color: var(--muted);
  padding-left: 1rem;
  position: relative;
}

.service-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.7rem;
}

.featured-tag {
  position: absolute;
  top: -1px;
  right: 1.5rem;
  background: var(--gold);
  color: var(--ivory);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
}

.services-cta {
  text-align: center;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
  padding: 5rem 0 6rem;
  background: var(--cream);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 2px;
  display: block;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(184,150,12,0.0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:hover .gallery-overlay { background: rgba(184,150,12,0.15); }

.gallery-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* Behold / Instagram embed widget spacing */
.gallery > .container > .behold-widget,
.gallery > .container > [data-behold],
.gallery > .container > div[id^="behold"] {
  margin-bottom: 2.5rem;
}

/* ============================================
   GOOGLE REVIEWS STRIP
   ============================================ */
.reviews-strip {
  background: var(--warm);
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.reviews-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 3rem;
  align-items: center;
}

.reviews-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 0.4rem;
  justify-content: center;
}

.reviews-score {
  font-family: var(--ff-serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1;
}

.reviews-score span {
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 1px;
  display: inline;
  margin-left: 0.4rem;
}

.reviews-mid {
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  padding: 0 3rem;
}

.reviews-text {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.8;
}

.reviews-btn {
  white-space: nowrap;
}

@media (max-width: 768px) {
  .reviews-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
  }

  .reviews-stars { justify-content: center; }

  .reviews-mid {
    border-left: none;
    border-right: none;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 0;
  }
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: 7rem 0;
  background: var(--ivory);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-lead {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: var(--cream);
  border: 1px solid transparent;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  border-color: var(--border);
  transform: translateX(4px);
}

.contact-icon {
  width: 42px;
  height: 42px;
  background: var(--warm);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.2rem;
}

.contact-value {
  display: block;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.5;
}

.contact-map-wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-map {
  height: 380px;
  border-radius: 2px 2px 0 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-bottom: none;
  background: var(--warm);
}

.map-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 0 0 2px 2px;
  font-size: 0.72rem;
  letter-spacing: 1px;
  color: var(--muted);
  transition: all 0.2s ease;
}

.map-link:hover {
  background: var(--warm);
  color: var(--gold);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--charcoal);
  padding: 3rem 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-logo-img {
  height: 72px;
  width: auto;
  filter: invert(1) brightness(0.75) sepia(1) hue-rotate(5deg) saturate(1.5);
}

.footer-mid { text-align: center; }

.footer-nav {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.footer-nav a {
  font-size: 0.68rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,252,248,0.5);
  transition: color 0.2s;
}

.footer-nav a:hover { color: var(--gold-light); }

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,252,248,0.35);
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,252,248,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,252,248,0.5);
  transition: all 0.3s;
}

.footer-social a:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
}

/* ============================================
   SCREEN READER ONLY
   ============================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ============================================
   SERVICE DETAIL BUTTON
   ============================================ */
.btn-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.5rem;
  padding: 0.55rem 1rem;
  font-family: var(--ff-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  background: transparent;
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-more::after {
  content: '→';
  display: inline-block;
  transition: transform 0.2s ease;
}

.btn-more:hover {
  background: var(--gold);
  color: var(--ivory);
}

.btn-more:hover::after {
  transform: translateX(3px);
}

/* ============================================
   MODALS
   ============================================ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(28,28,28,0.65);
  z-index: 1000;
  overflow-y: auto;
  padding: 6rem 1rem 2rem;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.modal-overlay.open {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.modal-box {
  background: var(--ivory);
  max-width: 640px;
  width: 100%;
  padding: 3rem;
  position: relative;
  border-radius: 2px;
  box-shadow: 0 30px 80px rgba(28,28,28,0.3);
  animation: modalIn 0.28s ease;
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--muted);
  cursor: pointer;
  line-height: 1;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
  padding: 0;
}

.modal-close:hover { color: var(--charcoal); }

.modal-content h3 {
  font-family: var(--ff-serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
  padding-right: 2rem;
}

.modal-content h4 {
  font-family: var(--ff-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--charcoal);
  margin: 1.5rem 0 0.4rem;
}

.modal-content p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.9;
}

.modal-content p + p { margin-top: 0.75rem; }

@media (max-width: 480px) {
  .modal-box {
    padding: 2rem 1.5rem;
  }
  .modal-overlay {
    padding-top: 4rem;
  }
}

/* ============================================
   SOCIAL SHARE STRIP
   ============================================ */
.social-share {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.share-eyebrow {
  font-family: var(--ff-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
}

.share-btns {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  font-family: var(--ff-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.share-btn--fb {
  background: #1877F2;
  color: #fff;
}

.share-btn--fb:hover {
  background: #1565C0;
  transform: translateY(-2px);
}

.share-btn--fb-page {
  background: transparent;
  color: #1877F2;
  border-color: #1877F2;
}

.share-btn--fb-page:hover {
  background: #1877F2;
  color: #fff;
  transform: translateY(-2px);
}

.share-btn--ig {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.share-btn--ig:hover {
  background: var(--gold);
  color: var(--ivory);
  transform: translateY(-2px);
}

/* ============================================
   FOOTER CREDIT
   ============================================ */
.footer-credit {
  font-size: 0.7rem;
  color: rgba(255,252,248,0.25);
  margin-top: 0.3rem;
}

.footer-credit a {
  color: rgba(255,252,248,0.4);
  transition: color 0.2s;
}

.footer-credit a:hover {
  color: var(--gold-light);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-inner {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  :root { --nav-h: 70px; }

  .nav-links { display: none; }
  .nav-burger { display: flex; }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 3rem 1.5rem 5rem;
    gap: 3rem;
  }

  .hero-text { max-width: 100%; }

  .title-rule { justify-content: center; }

  .hero-actions { justify-content: center; }

  .hero-visual { justify-content: center; }

  .hero-frame { max-width: 320px; }

  .scroll-hint { display: none; }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-visual { order: -1; }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-inner {
    grid-template-columns: 1fr;
  }

  .contact-map { height: 280px; }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-social { justify-content: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }

  .hero-title { font-size: clamp(2.8rem, 12vw, 4rem); }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }

  .hero-badge { left: 0; bottom: -24px; }
}
