/* ═══════════════════════════════════════════════════════════════
   Mansfield Printing — Styles
   Palette: Plum (#6B2F5B) + Amber (#D49A6A) + Cream (#FDF6EC)
   ═══════════════════════════════════════════════════════════════ */

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

:root {
  --plum-dark: #4A1F40;
  --plum: #6B2F5B;
  --plum-light: #8E4072;
  --plum-muted: #F3E8F0;
  --plum-bg: #FBF5F8;
  --amber: #D49A6A;
  --amber-light: #F5C07A;
  --amber-dark: #B87A4A;
  --amber-bg: #FFF8F0;
  --bg: #FDF6EC;
  --bg-white: #FFFFFF;
  --text-dark: #2D1F2D;
  --text: #4A3648;
  --text-muted: #7A6274;
  --text-light: #9A8494;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-sm: 0 2px 8px rgba(107,47,91,0.07);
  --shadow-md: 0 4px 20px rgba(107,47,91,0.10);
  --shadow-lg: 0 8px 40px rgba(107,47,91,0.14);
  --shadow-xl: 0 16px 60px rgba(107,47,91,0.18);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Nunito', 'Segoe UI', sans-serif;
}

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--text-dark); line-height: 1.2; }

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

/* ── Accent utility ─────────────────────────────────────────── */
.accent { color: var(--plum); }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-xl);
  padding: 14px 28px;
  transition: var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--plum {
  background: var(--plum);
  color: #fff;
  box-shadow: 0 4px 16px rgba(107,47,91,0.3);
}
.btn--plum:hover {
  background: var(--plum-dark);
  box-shadow: 0 6px 24px rgba(107,47,91,0.4);
}

.btn--amber {
  background: var(--amber);
  color: var(--text-dark);
  box-shadow: 0 4px 16px rgba(212,154,106,0.4);
}
.btn--amber:hover {
  background: var(--amber-dark);
  box-shadow: 0 6px 24px rgba(184,122,74,0.4);
}

.btn--white {
  background: #fff;
  color: var(--plum);
  box-shadow: var(--shadow-md);
}
.btn--white:hover {
  background: var(--plum-muted);
  box-shadow: var(--shadow-lg);
}

.btn--ghost {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.7);
}

.btn--sm { padding: 10px 20px; font-size: 0.85rem; }
.btn--lg { padding: 16px 32px; font-size: 1.05rem; }
.btn--full { width: 100%; justify-content: center; }

/* ── Section labels ──────────────────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--amber-dark);
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--amber);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.8;
}

/* ═══════════════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253,246,236,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(107,47,91,0.08);
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(253,246,236,0.96);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-dark);
}
.logo strong { color: var(--plum); }

.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--plum);
  border-radius: var(--radius-sm);
  position: relative;
  flex-shrink: 0;
}
.logo-mark::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  height: 3px;
  background: var(--amber-light);
  border-radius: 3px;
  box-shadow: 0 6px 0 var(--amber-light), 0 12px 0 var(--amber-light);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-menu a {
  padding: 8px 16px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
  border-radius: var(--radius-xl);
  transition: var(--transition);
}
.nav-menu a:hover {
  color: var(--plum);
  background: var(--plum-muted);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  padding: 4px 0;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2.5px;
  background: var(--text-dark);
  border-radius: 3px;
  transition: var(--transition);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ═══════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════ */
.hero {
  padding-top: 72px;
  background: linear-gradient(135deg, var(--plum-dark) 0%, var(--plum) 50%, var(--plum-light) 100%);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 80% 40%, rgba(212,154,106,0.2) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 10% 90%, rgba(142,64,114,0.3) 0%, transparent 50%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0 120px;
  position: relative;
  z-index: 1;
}

.hero-copy { color: #fff; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-xl);
  padding: 8px 18px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--amber-light);
  backdrop-filter: blur(8px);
  margin-bottom: 28px;
}

.hero-title {
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  color: #fff;
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-title .accent {
  color: var(--amber-light);
  font-style: italic;
}

.hero-desc {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 56px;
}
.hero-actions .btn--ghost {
  color: #fff;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--amber-light);
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}

/* Hero Visual */
.hero-visual { position: relative; }

.hero-img-stack {
  position: relative;
  height: 780px;
}
.hero-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.hero-img--float {
  position: absolute;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 4px solid rgba(255,255,255,0.2);
}
.hero-img--float--1 {
  width: 340px;
  height: 260px;
  bottom: 100px;
  left: -40px;
  z-index: 2;
}
.hero-img--float--2 {
  width: 260px;
  height: auto;
  bottom: -20px;
  right: -20px;
  z-index: 3;
  background: #fff;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: var(--radius-md);
  border: none;
  box-shadow: var(--shadow-lg);
}
.float-card-icon {
  width: 48px;
  height: 48px;
  background: var(--plum-muted);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--plum);
  flex-shrink: 0;
}
.hero-float-card strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-dark);
}
.hero-float-card span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: 120px; }

/* ═══════════════════════════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════════════════════════ */
.services {
  padding: 100px 0 120px;
  background: var(--bg);
}

.services .section-label,
.services .section-title,
.services .section-desc {
  text-align: center;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(107,47,91,0.06);
  transition: var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(107,47,91,0.12);
}

.card-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: var(--plum-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--plum);
  margin-bottom: 20px;
  transition: var(--transition);
}
.card:hover .card-icon {
  background: color-mix(in srgb, var(--accent) 15%, var(--plum-muted));
  color: var(--accent);
  transform: scale(1.05);
}

.card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════════════════════ */
.about {
  padding: 100px 0 120px;
  background: var(--plum-bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual { position: relative; }

.about-img-group { position: relative; height: 640px; }

.about-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.about-img--float {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 300px;
  height: 220px;
  border-radius: var(--radius-md);
  border: 5px solid var(--plum-bg);
  box-shadow: var(--shadow-md);
}

.about-badge {
  position: absolute;
  top: -20px;
  right: 40px;
  background: var(--amber);
  color: var(--text-dark);
  font-weight: 800;
  font-size: 0.85rem;
  padding: 12px 20px;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-md);
}

.about-copy .section-title { margin-bottom: 24px; }
.about-copy > p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  margin-top: 32px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
}
.feature-item .check {
  color: var(--amber-dark);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════
   GALLERY
   ═══════════════════════════════════════════════════════════════ */
.gallery {
  padding: 100px 0 120px;
  background: var(--bg);
}

.gallery .section-label,
.gallery .section-title,
.gallery .section-desc {
  text-align: center;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 5/3.8;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-item:hover img {
  transform: scale(1.06);
}
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(74,31,64,0.8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay span {
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
}

/* ═══════════════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════════════ */
.testimonials {
  padding: 100px 0 120px;
  background: var(--plum);
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 90% 10%, rgba(212,154,106,0.15), transparent);
  pointer-events: none;
}

.testimonials .section-label { color: var(--amber-light); }
.testimonials .section-label::before { background: var(--amber-light); }
.testimonials .section-title { color: #fff; text-align: center; display: block; margin-left: auto; margin-right: auto; }
.testimonials .section-title .accent { color: var(--amber-light); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  backdrop-filter: blur(8px);
  transition: var(--transition);
}
.testimonial-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-4px);
}

.quote-mark {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  color: var(--amber-light);
  opacity: 0.5;
  margin-bottom: -8px;
}

.testimonial-card p {
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.testimonial-card footer {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
}
.testimonial-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--amber-light);
}

/* ═══════════════════════════════════════════════════════════════
   CTA
   ═══════════════════════════════════════════════════════════════ */
.cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-dark) 100%);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 0% 100%, rgba(107,47,91,0.2), transparent);
  pointer-events: none;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.cta-copy { flex: 1; min-width: 280px; }
.cta-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--text-dark);
  margin-bottom: 12px;
}
.cta-copy > p {
  color: rgba(45,31,45,0.7);
  font-size: 1.1rem;
  max-width: 480px;
}
.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════════════ */
.contact {
  padding: 100px 0 120px;
  background: var(--bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-details {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.detail-item dt {
  width: 48px;
  height: 48px;
  background: var(--plum-muted);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--plum);
  flex-shrink: 0;
}
.detail-item dd {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
}
.detail-item a {
  color: var(--text);
  font-weight: 600;
  transition: var(--transition);
}
.detail-item a:hover { color: var(--plum); }

/* Form */
.contact-form-wrap {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(107,47,91,0.06);
}
.form-title {
  font-size: 1.6rem;
  margin-bottom: 8px;
}
.form-desc {
  color: var(--text-muted);
  margin-bottom: 28px;
  font-size: 0.95rem;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-dark);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid rgba(107,47,91,0.12);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dark);
  background: var(--bg);
  transition: var(--transition);
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--plum);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(107,47,91,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-success {
  text-align: center;
  padding: 40px 20px;
}
.form-success svg { margin: 0 auto 16px; }
.form-success h4 {
  font-size: 1.4rem;
  color: var(--plum);
  margin-bottom: 8px;
}
.form-success p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo-mark { background: var(--amber); }
.footer-brand .logo-mark::after { background: var(--plum); box-shadow: 0 6px 0 var(--plum), 0 12px 0 var(--plum); }
.footer-brand .logo-text { color: #fff; }
.footer-brand .logo-text strong { color: var(--amber-light); }
.footer-brand p { font-size: 0.95rem; line-height: 1.7; }

.footer h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber-light);
  margin-bottom: 20px;
}
.footer ul li { margin-bottom: 10px; }
.footer a {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  transition: var(--transition);
}
.footer a:hover { color: var(--amber-light); }
.footer p { font-size: 0.95rem; line-height: 1.8; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
}
.footer-bottom p {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; padding: 60px 0 100px; }
  .hero-visual { display: none; }
  .hero { min-height: auto; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { order: -1; }
  .about-img-group { height: 440px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(253,246,236,0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 24px;
    gap: 8px;
    border-bottom: 1px solid rgba(107,47,91,0.08);
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
  }
  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-menu a { width: 100%; text-align: center; padding: 12px; }
  .nav-toggle { display: flex; }

  .hero-title { font-size: clamp(2.8rem, 10vw, 4rem); }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 12px; }
  .stat-divider { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .about-img-group { height: 360px; }
  .about-img--float { display: none; }
  .about-features { grid-template-columns: 1fr; }

  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }

  .contact-form-wrap { padding: 28px; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .btn--lg { padding: 14px 24px; font-size: 1rem; }
}

/* ── Reduced motion ──────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
