:root {
  /* SLATE & SAGE PALETTE */
  --slate: #3a3f47;
  --slate-light: #525860;
  --slate-soft: #6e747c;
  --sage-dark: #5c6e5a;
  --sage: #8a9a80;
  --sage-mid: #6b7c72;
  --sage-light: #b8c5b0;
  --sage-pale: #d4dccf;
  --sage-wash: #f0f3ee;
  --green-white: #f6f8f5;
  --cream: #faf9f7;
  --beige: #eae5dc;
  --beige-light: #f2efe9;
  --white: #ffffff;
  --black: #1a1a1a;
  --text-dark: #2a2d31;
  --text-mid: #4d5258;
  --text-light: #7d8389;
  --text-pale: #a5aab0;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Raleway', sans-serif;
}

*,
*::before,
*::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

.section-label {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 4px;
  text-transform: uppercase; color: var(--sage-dark); margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display); font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  color: var(--slate); line-height: 1.2; margin-bottom: 1.5rem; font-weight: 500;
}

.section-title.light { color: var(--white); }

.btn {
  display: inline-block; padding: 14px 36px;
  font-family: var(--font-body); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  border: none; cursor: pointer; transition: all 0.35s ease; border-radius: 2px;
}

.btn-sage { background: var(--sage-dark); color: var(--white); }
.btn-sage:hover { background: var(--sage-mid); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(92, 110, 90, 0.3); }
.btn-outline-dark { background: transparent; color: var(--slate); border: 1.5px solid var(--sage); }
.btn-outline-dark:hover { background: var(--sage-dark); color: var(--white); border-color: var(--sage-dark); }
.btn-outline-light { background: transparent; color: var(--white); border: 1.5px solid rgba(255, 255, 255, 0.4); }
.btn-outline-light:hover { background: rgba(255, 255, 255, 0.12); border-color: rgba(255, 255, 255, 0.7); }
.btn-dark { background: var(--slate); color: var(--white); }
.btn-dark:hover { background: var(--slate-light); transform: translateY(-2px); }

.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ─── NAV ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(58, 63, 71, 0.08);
  transition: all 0.4s;
}
.nav.scrolled { box-shadow: 0 2px 30px rgba(58, 63, 71, 0.06); }
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between; height: 78px;
}
.logo { display: flex; align-items: center; gap: 14px; }
.logo-mark {
  width: 44px; height: 44px; border: 1.5px solid var(--black);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 18px; font-weight: 500;
  color: var(--black); letter-spacing: 1px; background: var(--white);
}
.logo-text { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: var(--black); line-height: 1.2; }
.logo-text span { display: block; font-family: var(--font-body); font-size: 0.55rem; font-weight: 500; letter-spacing: 3.5px; text-transform: uppercase; color: var(--text-light); margin-top: 2px; }
.nav-links { display: flex; align-items: center; gap: 2.2rem; list-style: none; }
.nav-links a { color: var(--text-mid); font-size: 0.72rem; font-weight: 500; letter-spacing: 1.8px; text-transform: uppercase; transition: color 0.3s; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1.5px; background: var(--sage-dark); transition: width 0.3s; border-radius: 1px; }
.nav-links a:hover { color: var(--slate); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { background: var(--sage-dark) !important; color: var(--white) !important; padding: 10px 24px !important; font-weight: 600 !important; border-radius: 2px; }
.nav-cta:hover { background: var(--sage-mid) !important; }
.nav-cta::after { display: none !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 1.5px; background: var(--slate); transition: all 0.3s; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--sage-wash) 0%, var(--sage-pale) 35%, var(--sage-light) 70%, var(--sage) 100%);
  display: flex; align-items: center; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 35%, rgba(255, 255, 255, 0.55) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 75%, rgba(107, 124, 114, 0.15) 0%, transparent 45%);
}
.hero::after {
  content: ''; position: absolute; right: -150px; top: -150px;
  width: 600px; height: 600px;
  border: 1px solid rgba(255, 255, 255, 0.3); border-radius: 50%;
}
.hero-circle2 { position: absolute; left: -80px; bottom: -80px; width: 350px; height: 350px; border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 50%; }
.hero-inner { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; padding: 0 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; width: 100%; }
.hero-content { padding: 8rem 0 4rem; }
.hero-tagline { font-size: 0.72rem; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; color: var(--slate); margin-bottom: 1.5rem; opacity: 0; animation: fadeUp 0.8s 0.3s forwards; }
.hero-title { font-family: var(--font-display); font-size: clamp(2.8rem, 5.5vw, 4.2rem); color: var(--slate); line-height: 1.12; margin-bottom: 1.5rem; font-weight: 500; opacity: 0; animation: fadeUp 0.8s 0.5s forwards; }
.hero-title em { font-style: italic; color: var(--sage-dark); font-weight: 400; }
.hero-desc { font-size: 1rem; font-weight: 400; color: var(--text-mid); line-height: 1.75; margin-bottom: 2.5rem; max-width: 460px; opacity: 0; animation: fadeUp 0.8s 0.7s forwards; }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; opacity: 0; animation: fadeUp 0.8s 0.9s forwards; }
.hero-visual { display: flex; align-items: center; justify-content: center; padding: 8rem 0 4rem; }

.hero-badge {
  width: 290px; height: 290px;
  border: 1.5px solid rgba(58, 63, 71, 0.15);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  position: relative; background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(12px); opacity: 0; animation: fadeIn 1s 1s forwards;
}
.hero-badge::before { content: ''; position: absolute; inset: 12px; border: 1px solid rgba(58, 63, 71, 0.08); }
.hero-badge-letters { font-family: var(--font-display); font-size: 4.5rem; color: var(--black); letter-spacing: 3px; line-height: 1; font-weight: 500; }
.hero-badge-name { font-family: var(--font-body); font-size: 0.6rem; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; color: var(--slate); margin-top: 1.2rem; }
.hero-badge-line { width: 35px; height: 1.5px; background: var(--sage-dark); margin: 0.8rem 0; border-radius: 1px; }
.hero-badge-est { font-size: 0.58rem; letter-spacing: 3px; text-transform: uppercase; color: var(--text-light); font-weight: 500; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(25px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ─── STRIP ─── */
.services-strip { background: var(--white); padding: 1.5rem 0; border-bottom: 1px solid rgba(58, 63, 71, 0.06); }
.services-strip-inner { display: flex; justify-content: center; gap: 3.5rem; flex-wrap: wrap; }
.strip-item { display: flex; align-items: center; gap: 10px; font-size: 0.72rem; font-weight: 600; letter-spacing: 1.8px; text-transform: uppercase; color: var(--sage-dark); }
.strip-dot { width: 5px; height: 5px; background: var(--sage); border-radius: 50%; }

/* ─── ABOUT ─── */
.about { padding: 7rem 0; background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-image { aspect-ratio: 4/3; position: relative; overflow: hidden; border-radius: 4px; }
.about-image-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--sage-pale), var(--sage)); }
.about-image-placeholder svg { width: 80px; height: 80px; opacity: 0.4; }
.about-image-tag { position: absolute; bottom: 0; left: 0; background: var(--slate); padding: 0.9rem 1.5rem; font-size: 0.68rem; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--white); }
.about-text p { font-size: 0.95rem; line-height: 1.85; color: var(--text-mid); margin-bottom: 1.5rem; font-weight: 400; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 2.5rem; padding-top: 2.5rem; border-top: 1px solid var(--sage-pale); }
.stat-number { font-family: var(--font-display); font-size: 2.4rem; color: var(--slate); font-weight: 500; }
.stat-label { font-size: 0.68rem; color: var(--text-light); letter-spacing: 1.5px; text-transform: uppercase; margin-top: 0.3rem; font-weight: 500; }

/* ─── SERVICES ─── */
.services { padding: 7rem 0; background: linear-gradient(170deg, var(--slate) 0%, var(--slate-light) 100%); position: relative; }
.services::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 20%, rgba(138, 154, 128, 0.1) 0%, transparent 50%); }
.services .container { position: relative; z-index: 1; }
.services-header { text-align: center; margin-bottom: 4rem; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-card {
  background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.5rem 2rem; transition: all 0.4s ease;
  position: relative; overflow: hidden; border-radius: 4px;
}
.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: var(--sage-light); transform: scaleX(0); transform-origin: left; transition: transform 0.4s; }
.service-card:hover { background: rgba(255, 255, 255, 0.1); transform: translateY(-5px); box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { width: 48px; height: 48px; margin-bottom: 1.5rem; }
.service-icon svg { width: 100%; height: 100%; stroke: var(--sage-light); fill: none; stroke-width: 1.2; }
.service-card h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--white); margin-bottom: 1rem; font-weight: 500; }
.service-card p { font-size: 0.88rem; line-height: 1.7; color: rgba(255, 255, 255, 0.7); font-weight: 400; }
.service-card ul { list-style: none; margin-top: 1.2rem; }
.service-card ul li { font-size: 0.82rem; color: rgba(255, 255, 255, 0.65); padding: 0.25rem 0; border-bottom: 1px solid rgba(255, 255, 255, 0.05); font-weight: 400; display: flex; align-items: center; gap: 8px; }
.service-card ul li::before { content: ''; width: 4px; height: 4px; background: var(--sage-light); border-radius: 50%; flex-shrink: 0; }
.service-card h4 { font-family: var(--font-display); font-size: 1.05rem; color: var(--sage-light); margin-top: 1.8rem; margin-bottom: 0.6rem; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; border-bottom: 1px solid rgba(255, 255, 255, 0.1); padding-bottom: 0.5rem; }
.service-card h4:first-of-type { margin-top: 1.2rem; }
.service-card.full-width { grid-column: 1 / -1; }
.service-card.full-width .service-subsections { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 1.2rem; }
.service-card.full-width .service-subsections h4 { margin-top: 0; }

/* ─── WHY ─── */
.why { padding: 7rem 0; background: var(--sage-wash); }
.why-header { text-align: center; margin-bottom: 4rem; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.why-item { text-align: center; padding: 2rem 1.2rem; }
.why-icon { width: 60px; height: 60px; margin: 0 auto 1.5rem; background: var(--white); border: 1.5px solid var(--sage-pale); display: flex; align-items: center; justify-content: center; border-radius: 50%; }
.why-icon svg { width: 24px; height: 24px; stroke: var(--sage-dark); fill: none; stroke-width: 1.5; }
.why-item h3 { font-family: var(--font-display); font-size: 1.2rem; color: var(--slate); margin-bottom: 0.75rem; font-weight: 600; }
.why-item p { font-size: 0.85rem; line-height: 1.7; color: var(--text-light); font-weight: 400; }

/* ─── GALLERY ─── */
.gallery { padding: 7rem 0; background: var(--cream); }
.gallery-header { text-align: center; margin-bottom: 4rem; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.gallery-item { aspect-ratio: 4/3; background: linear-gradient(135deg, var(--sage-pale), var(--sage)); position: relative; overflow: hidden; cursor: pointer; transition: transform 0.4s; border-radius: 4px; }
.gallery-item:hover { transform: scale(1.02); }
.gallery-placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.5rem; }
.gallery-placeholder svg { width: 36px; height: 36px; stroke: var(--white); fill: none; stroke-width: 1; opacity: 0.5; }
.gallery-placeholder span { font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase; color: var(--white); opacity: 0.6; font-weight: 500; }
.gallery-note { text-align: center; margin-top: 2rem; font-size: 0.85rem; color: var(--text-light); font-style: italic; }

/* ─── GALLERY CATEGORIES ─── */
.gallery-category { margin-bottom: 3rem; }
.gallery-category:last-child { margin-bottom: 0; }
.gallery-category-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.2rem; }
.gallery-category-title { font-family: var(--font-display); font-size: 1.3rem; color: var(--slate); font-weight: 600; }
.gallery-scroll-hint { font-size: 0.7rem; color: var(--text-pale); letter-spacing: 1px; text-transform: uppercase; display: flex; align-items: center; gap: 6px; }
.gallery-scroll-hint svg { width: 16px; height: 16px; stroke: var(--text-pale); fill: none; stroke-width: 1.5; }
.gallery-track { display: flex; gap: 1.2rem; overflow-x: auto; scroll-snap-type: x mandatory;box-shadow: 0 2px 12px rgba(61, 95, 61, 0.1); -webkit-overflow-scrolling: touch; padding-bottom: 0.5rem; scrollbar-width: thin; scrollbar-color: var(--sage-pale) transparent; }
.gallery-track::-webkit-scrollbar { height: 4px; }
.gallery-track::-webkit-scrollbar-track { background: transparent; }
.gallery-track::-webkit-scrollbar-thumb { background: var(--sage-pale); border-radius: 2px; }

.gallery-slide { flex: 0 0 280px; aspect-ratio:3/4; background: linear-gradient(135deg, var(--sage-pale), var(--sage)); border-radius: 4px; overflow: hidden; scroll-snap-align: start; cursor: pointer; transition: transform 0.3s; position: relative; }
.gallery-kitchen { flex: 0 0 280px; aspect-ratio: 4/3; background: linear-gradient(135deg, var(--sage-pale), var(--sage)); border-radius: 4px; overflow: hidden; scroll-snap-align: start; cursor: pointer; transition: transform 0.3s; position: relative; }
.gallery-slide:hover { transform: scale(1.02); box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15); }
.gallery-slide img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-slide video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; display: block; }

.gallery-slide-placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.5rem; }
.gallery-slide-placeholder svg { width: 32px; height: 32px; stroke: var(--white); fill: none; stroke-width: 1; opacity: 0.5; }
.gallery-slide-placeholder span { font-size: 0.6rem; letter-spacing: 2px; text-transform: uppercase; color: var(--white); opacity: 0.5; font-weight: 500; }

/* ─── CONTACT ─── */
.contact { padding: 7rem 0; background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; }
.contact-info h3 { font-family: var(--font-display); font-size: 1.4rem; color: var(--slate); margin-bottom: 1.5rem; margin-top: 2rem; font-weight: 600; }
.contact-info h3:first-child { margin-top: 0; }
.contact-detail { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 1.2rem; }
.contact-detail svg { width: 18px; height: 18px; stroke: var(--sage-dark); fill: none; stroke-width: 1.5; flex-shrink: 0; margin-top: 3px; }
.contact-detail p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.6; font-weight: 400; }
.contact-detail a { color: var(--sage-dark); transition: color 0.3s; }
.contact-detail a:hover { color: var(--slate); }
.contact-form-title { font-size: 0.7rem; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; color: var(--text-light); text-align: center; margin-bottom: 2.5rem; }
.contact-form .field { margin-bottom: 1.8rem; }
.contact-form input, .contact-form textarea {
  width: 100%; padding: 12px 0; font-family: var(--font-body); font-size: 0.92rem; font-weight: 400;
  color: var(--text-dark); background: transparent; border: none; border-bottom: 1px solid var(--beige);
  outline: none; transition: border-color 0.3s;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--text-pale); font-weight: 400; }
.contact-form input:focus, .contact-form textarea:focus { border-bottom-color: var(--sage-dark); }
.contact-form textarea { min-height: 120px; resize: vertical; border: 1px solid var(--beige); padding: 14px; margin-top: 0.5rem; border-radius: 2px; }
.contact-form textarea:focus { border-color: var(--sage-dark); }
.form-submit { text-align: center; margin-top: 2rem; }
.form-submit .btn { min-width: 180px; }
.form-success { display: none; text-align: center; padding: 3rem; }
.form-success.show { display: block; }
.form-success h3 { font-family: var(--font-display); font-size: 1.6rem; color: var(--slate); margin-bottom: 0.75rem; font-weight: 500; }
.form-success p { color: var(--text-mid); font-weight: 400; }

/* ─── CTA ─── */
.cta-banner { padding: 5rem 0; background: linear-gradient(160deg, var(--sage-wash), var(--sage-pale)); text-align: center; }
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.6rem); color: var(--slate); margin-bottom: 1rem; font-weight: 500; }
.cta-banner p { color: var(--text-mid); font-size: 1rem; font-weight: 400; margin-bottom: 2rem; }

/* ─── FOOTER ─── */
.footer { background: var(--slate); padding: 3.5rem 0 2rem; }
.footer .logo-mark { border-color: rgba(255, 255, 255, 0.3); color: var(--white); background: transparent; }
.footer .logo-text { color: var(--white); }
.footer .logo-text span { color: rgba(255, 255, 255, 0.5); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand p { font-size: 0.85rem; color: rgba(255, 255, 255, 0.5); font-weight: 400; line-height: 1.7; max-width: 280px; margin-top: 1rem; }
.footer h4 { font-size: 0.65rem; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--sage-light); margin-bottom: 1.2rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a { font-size: 0.85rem; color: rgba(255, 255, 255, 0.5); font-weight: 400; transition: color 0.3s; }
.footer-links a:hover { color: var(--sage-light); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.08); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 0.73rem; color: rgba(255, 255, 255, 0.35); font-weight: 400; }

/* ─── MOBILE MENU ─── */
.mobile-menu { display: none; position: fixed; top: 78px; left: 0; right: 0; bottom: 0; background: var(--white); z-index: 999; padding: 2rem; }
.mobile-menu.open { display: flex; flex-direction: column; }
.mobile-menu a { display: block; padding: 1rem 0; color: var(--slate); font-size: 0.9rem; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; border-bottom: 1px solid var(--sage-wash); transition: color 0.3s; }
.mobile-menu a:hover { color: var(--sage-dark); }

/* ─── RESPONSIVE ─── */
@media (max-width: 968px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-content { padding: 9rem 0 4rem; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .service-card.full-width .service-subsections { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .container { padding: 0 1.25rem; }
  .hero-content { padding: 8rem 0 3rem; }
  .hero-title { font-size: 2.4rem; }
  .about, .services, .why, .gallery, .contact { padding: 5rem 0; }
  .why-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-slide { flex: 0 0 240px; }
  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .services-strip-inner { gap: 1.2rem; justify-content: flex-start; overflow-x: auto; padding: 0 1.25rem; flex-wrap: nowrap; }
  .strip-item { white-space: nowrap; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .services-grid { gap: 1rem; }
  .service-card { padding: 2rem 1.5rem; }
}
