/* ========================================
   Imprimerie Deshorme — Design System CMYK
   ======================================== */

:root {
  --cyan: #00B7EB;
  --magenta: #E4007C;
  --yellow: #FFED00;
  --black: #1A1A1A;
  --white: #FFFFFF;
  --gray-light: #F8F9FA;
  --gray-medium: #6B7280;
  --gray-dark: #374151;
  --eco: #10B981;

  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --container: 80rem;
  --header-h: 3.75rem;
  --radius: 0.75rem;
  --radius-pill: 9999px;
  --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.07), 0 2px 4px -2px rgb(0 0 0 / 0.05);
  --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.05);
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--gray-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: var(--cyan);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--magenta);
}

address {
  font-style: normal;
}

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

.section {
  padding: 3.5rem 0;
}

.section--light {
  background: var(--gray-light);
}

.section--dark {
  background: var(--black);
  color: var(--white);
}

.section--dark h2,
.section--dark h3 {
  color: var(--white);
}

.section--dark p {
  color: rgb(255 255 255 / 0.75);
}

.section__header {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 2rem;
}

.section__header h2 {
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.75rem;
}

.section__header p {
  color: var(--gray-medium);
  font-size: 0.9375rem;
}

h1, h2, h3 {
  line-height: 1.2;
  color: var(--black);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.9375rem;
  font-family: var(--font);
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
  text-decoration: none;
  min-height: 3rem;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
  overflow: visible;
  isolation: isolate;
}

.btn-primary {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--magenta) 100%);
  color: var(--white);
  box-shadow: 0 2px 8px rgb(228 0 124 / 0.25);
}

.btn-primary:hover {
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgb(255 255 255 / 0.4);
}

.btn-secondary:hover {
  background: rgb(255 255 255 / 0.1);
  color: var(--white);
  border-color: var(--white);
}

.btn-full {
  width: 100%;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.header.is-scrolled {
  background: rgb(255 255 255 / 0.97);
  backdrop-filter: blur(12px);
  border-bottom-color: rgb(0 0 0 / 0.06);
  box-shadow: 0 1px 3px rgb(0 0 0 / 0.04);
}

.header.is-menu-open {
  background: var(--black);
  border-bottom-color: rgb(255 255 255 / 0.08);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: var(--header-h);
  gap: 1rem;
}

.header__logo {
  display: none;
  align-items: center;
  flex-shrink: 0;
  background: transparent;
  padding: 0;
  border-radius: 0;
}

.header__logo img {
  width: 2.25rem;
  height: 2.25rem;
  object-fit: contain;
}

.header__toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.625rem;
  margin-right: -0.625rem;
  z-index: 110;
  min-width: 2.75rem;
  min-height: 2.75rem;
}

.header__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  transition: all var(--transition);
  border-radius: 2px;
}

.header.is-over-hero:not(.is-scrolled):not(.is-menu-open) .header__toggle span,
.header.is-menu-open .header__toggle span {
  background: var(--white);
}

.header__toggle.is-active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.header__toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.header__toggle.is-active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.header__nav {
  display: none;
}

.header__nav.is-open {
  display: flex;
  flex-direction: column;
  position: fixed;
  inset: 0;
  top: 0;
  padding: calc(var(--header-h) + 1.5rem) 1.25rem 2rem;
  background: var(--black);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.header__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}

.header__links a {
  display: block;
  padding: 1rem 1.125rem;
  color: rgb(255 255 255 / 0.85);
  font-weight: 500;
  font-size: 1.0625rem;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.header__links a:hover,
.header__links a.is-active {
  color: var(--white);
  background: rgb(255 255 255 / 0.08);
}

.nav-link--cta {
  background: linear-gradient(135deg, var(--cyan), var(--magenta)) !important;
  color: var(--white) !important;
  text-align: center;
  margin-top: 0.75rem;
  font-weight: 600;
}

.nav-link--cta:hover {
  color: var(--white) !important;
  opacity: 0.92;
  background: linear-gradient(135deg, var(--cyan), var(--magenta)) !important;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: visible;
}

.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 20% 50%, rgb(0 183 235 / 0.25) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgb(228 0 124 / 0.15) 0%, transparent 40%),
    radial-gradient(ellipse at 60% 80%, rgb(255 237 0 / 0.08) 0%, transparent 40%),
    linear-gradient(160deg, #0a1628 0%, var(--black) 50%, #0d2137 100%);
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--cyan) 1px, transparent 1px),
    linear-gradient(90deg, var(--cyan) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.04;
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 1.5rem 0 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero__logo-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
  max-width: 100%;
  overflow: visible;
}

.hero__logo-wrap::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 115%;
  height: 220%;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    ellipse 48% 42% at 50% 50%,
    rgb(255 255 255 / 0.42) 0%,
    rgb(255 255 255 / 0.16) 38%,
    rgb(255 255 255 / 0.04) 58%,
    transparent 78%
  );
  filter: blur(18px);
  z-index: 0;
  pointer-events: none;
}

.hero__logo-wrap::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70%;
  height: 90%;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    ellipse 50% 50% at 50% 50%,
    rgb(255 255 255 / 0.22) 0%,
    transparent 68%
  );
  filter: blur(10px);
  z-index: 0;
  pointer-events: none;
}

.hero__logo {
  position: relative;
  z-index: 1;
  width: min(88vw, 22rem);
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 4px 20px rgb(0 0 0 / 0.25));
}

.hero__badge {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  background: rgb(255 255 255 / 0.1);
  border: 1px solid rgb(255 255 255 / 0.2);
  border-radius: var(--radius-pill);
  color: var(--cyan);
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.hero__title {
  font-size: clamp(1.5rem, 5.5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.875rem;
  max-width: 20ch;
}

.hero__subtitle {
  font-size: 0.9375rem;
  color: rgb(255 255 255 / 0.72);
  margin-bottom: 1.75rem;
  max-width: 32rem;
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
  width: 100%;
  max-width: 20rem;
  padding: 0 0.25rem;
  overflow: visible;
}

.hero__actions .btn {
  width: 100%;
  max-width: 100%;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid rgb(0 0 0 / 0.06);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

.service-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: var(--shadow-lg);
  border-color: var(--cyan);
}

.service-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.service-card p {
  color: var(--gray-medium);
  font-size: 0.9375rem;
  line-height: 1.55;
}

.service-card__icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.service-card__icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.service-card__icon--cyan {
  background: rgb(0 183 235 / 0.12);
  color: var(--cyan);
}

.service-card__icon--magenta {
  background: rgb(228 0 124 / 0.12);
  color: var(--magenta);
}

.service-card__icon--yellow {
  background: rgb(255 237 0 / 0.2);
  color: #b8960a;
}

.service-card__icon--black {
  background: rgb(26 26 26 / 0.08);
  color: var(--black);
}

/* About */
.about {
  display: grid;
  gap: 3rem;
}

.about__text h2 {
  font-size: 1.625rem;
  margin-bottom: 1rem;
}

.about__text p {
  margin-bottom: 0.875rem;
  color: var(--gray-medium);
  font-size: 0.9375rem;
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.875rem;
}

.stat {
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 1.125rem 0.875rem;
  text-align: center;
  border: 1px solid rgb(0 0 0 / 0.04);
}

.stat__number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--cyan), var(--magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.25rem;
}

.stat__label {
  font-size: 0.75rem;
  color: var(--gray-medium);
  line-height: 1.35;
}

/* Why */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform var(--transition);
}

.why-card:hover {
  transform: translateY(-3px);
}

.why-card h3 {
  font-size: 1.0625rem;
  margin-bottom: 0.5rem;
}

.why-card p {
  color: var(--gray-medium);
  font-size: 0.9375rem;
  line-height: 1.55;
}

.why-card__icon {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.why-card__icon svg {
  width: 2.5rem;
  height: 2.5rem;
}

.why-card__icon--family svg {
  color: var(--magenta);
}

.why-card__icon--eco svg {
  color: var(--eco);
}

.why-card__icon--gift svg {
  color: var(--cyan);
}

.why-card__icon--speed svg {
  color: #c9a800;
}

/* Expertise */
.expertise-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.expertise-card {
  background: rgb(255 255 255 / 0.05);
  border: 1px solid rgb(255 255 255 / 0.1);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color var(--transition);
}

.expertise-card:hover {
  border-color: var(--cyan);
}

.expertise-card__tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: linear-gradient(135deg, var(--cyan), var(--magenta));
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.expertise-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.expertise-card ul {
  list-style: none;
  margin-top: 1.25rem;
}

.expertise-card li {
  padding: 0.375rem 0;
  padding-left: 1.25rem;
  position: relative;
  color: rgb(255 255 255 / 0.7);
  font-size: 0.9375rem;
}

.expertise-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.875rem;
}

.gallery__item {
  position: relative;
  border: none;
  background: none;
  cursor: pointer;
  border-radius: var(--radius);
  overflow: hidden;
  padding: 0;
  font-family: var(--font);
  transition: transform var(--transition);
}

.gallery__item:hover {
  transform: scale(1.03);
}

.gallery__placeholder {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
}

.gallery__placeholder--1 { background: linear-gradient(135deg, var(--cyan), var(--magenta)); }
.gallery__placeholder--2 { background: linear-gradient(135deg, var(--magenta), var(--yellow)); }
.gallery__placeholder--3 { background: linear-gradient(135deg, var(--yellow), var(--cyan)); }
.gallery__placeholder--4 { background: linear-gradient(135deg, var(--black), var(--cyan)); }
.gallery__placeholder--5 { background: linear-gradient(135deg, var(--magenta), var(--black)); }
.gallery__placeholder--6 { background: linear-gradient(135deg, var(--cyan), var(--yellow)); }
.gallery__placeholder--7 { background: linear-gradient(135deg, var(--eco), var(--cyan)); }
.gallery__placeholder--8 { background: linear-gradient(135deg, var(--yellow), var(--magenta)); }

.gallery__item span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem 1rem;
  background: linear-gradient(transparent, rgb(0 0 0 / 0.7));
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  text-align: left;
}

/* Products */
.products-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.product-tag {
  display: inline-block;
  padding: 0.4375rem 1rem;
  background: var(--white);
  border: 1px solid rgb(0 0 0 / 0.08);
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-dark);
  transition: all var(--transition);
}

.product-tag:hover {
  background: linear-gradient(135deg, var(--cyan), var(--magenta));
  color: var(--white);
  border-color: transparent;
  transform: translateY(-2px);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.contact-info__block {
  margin-bottom: 1.5rem;
}

.contact-info__block h3 {
  font-size: 1rem;
  margin-bottom: 0.625rem;
  color: var(--black);
}

.contact-info__block p {
  color: var(--gray-medium);
  margin-bottom: 0.25rem;
  font-size: 0.9375rem;
}

.contact-info__map {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  margin-top: 1rem;
}

.contact-info__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid rgb(0 0 0 / 0.06);
}

.contact-form h3 {
  font-size: 1.125rem;
  margin-bottom: 1.25rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.375rem;
  color: var(--gray-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 0.875rem;
  border: 1px solid rgb(0 0 0 / 0.12);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 1rem;
  color: var(--gray-dark);
  background: var(--white);
  transition: border-color var(--transition);
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgb(0 183 235 / 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-note {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--gray-medium);
  text-align: center;
}

/* Footer */
.footer {
  background: var(--black);
  color: rgb(255 255 255 / 0.6);
  padding: 2.5rem 0 1.75rem;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.footer__brand img {
  height: 2.25rem;
  width: auto;
  max-width: 11rem;
  margin: 0 auto 0.75rem;
  opacity: 0.95;
}

.footer__brand p {
  font-size: 0.875rem;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  justify-content: center;
}

.footer__links a {
  color: rgb(255 255 255 / 0.6);
  font-size: 0.875rem;
}

.footer__links a:hover {
  color: var(--cyan);
}

.footer__copy {
  font-size: 0.8125rem;
  color: rgb(255 255 255 / 0.4);
  margin-top: 1rem;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgb(0 0 0 / 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  backdrop-filter: blur(8px);
}

.lightbox[hidden] {
  display: none;
}

.lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
  transition: opacity var(--transition);
  min-width: 2.75rem;
  min-height: 2.75rem;
}

.lightbox__close:hover {
  opacity: 1;
}

.lightbox__content {
  text-align: center;
  max-width: 600px;
  width: 100%;
}

.lightbox__preview {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

.lightbox__label {
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 600;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Small phones gallery: 2 columns from 400px */
@media (min-width: 400px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablet & desktop */
@media (min-width: 768px) {
  :root {
    --header-h: 4.5rem;
  }

  body {
    font-size: 1.0625rem;
  }

  .container {
    padding: 0 1.5rem;
  }

  .section {
    padding: 5rem 0;
  }

  .section__header {
    margin-bottom: 3rem;
  }

  .section__header h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
  }

  .section__header p {
    font-size: 1.0625rem;
  }

  .btn {
    font-size: 1rem;
    padding: 0.875rem 2rem;
  }

  .header__inner {
    justify-content: space-between;
  }

  .header__logo {
    display: flex;
  }

  .header__logo img {
    width: 2.5rem;
    height: 2.5rem;
  }

  .header__toggle {
    display: none;
  }

  .header__nav {
    display: block !important;
    position: static;
    background: none;
    padding: 0;
    overflow: visible;
    flex-direction: row;
  }

  .header__links {
    flex-direction: row;
    align-items: center;
    gap: 0.25rem;
  }

  .header__links a {
    padding: 0.5rem 0.875rem;
    font-size: 0.9375rem;
    color: var(--gray-dark);
  }

  .header.is-over-hero:not(.is-scrolled) .header__links a {
    color: rgb(255 255 255 / 0.85);
  }

  .header.is-over-hero:not(.is-scrolled) .header__links a:hover,
  .header.is-over-hero:not(.is-scrolled) .header__links a.is-active {
    color: var(--white);
    background: rgb(255 255 255 / 0.1);
  }

  .header__links a:hover,
  .header__links a.is-active {
    color: var(--cyan);
    background: rgb(0 183 235 / 0.08);
  }

  .nav-link--cta {
    margin-top: 0;
  }

  .hero__content {
    align-items: flex-start;
    text-align: left;
    padding: 3rem 0 5rem;
    max-width: 44rem;
  }

  .hero__logo-wrap {
    margin-bottom: 2rem;
  }

  .hero__logo {
    width: min(100%, 26rem);
  }

  .hero__title {
    max-width: none;
  }

  .hero__subtitle {
    font-size: 1.125rem;
    margin-bottom: 2rem;
  }

  .hero__actions {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    max-width: none;
    width: auto;
  }

  .hero__actions .btn {
    width: auto;
  }

  .service-card {
    padding: 2rem;
  }

  .service-card h3 {
    font-size: 1.25rem;
  }

  .service-card p {
    font-size: 1rem;
  }

  .about__text h2 {
    font-size: 2.25rem;
  }

  .about__text p {
    font-size: 1.0625rem;
  }

  .stat {
    padding: 1.5rem;
  }

  .stat__number {
    font-size: 2rem;
  }

  .stat__label {
    font-size: 0.875rem;
  }

  .why-card {
    padding: 2rem;
  }

  .why-card h3 {
    font-size: 1.25rem;
  }

  .why-card p {
    font-size: 1rem;
  }

  .expertise-card {
    padding: 2.5rem;
  }

  .expertise-card h3 {
    font-size: 1.5rem;
  }

  .expertise-card li {
    font-size: 1rem;
    padding-left: 1.5rem;
  }

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

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

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

  .about {
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
  }

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

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

  .contact-form {
    padding: 2rem;
  }

  .contact-form h3 {
    font-size: 1.25rem;
  }

  .footer {
    padding: 3rem 0 2rem;
  }

  .footer__inner {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: left;
  }

  .footer__brand {
    flex: 1;
    min-width: 200px;
  }

  .footer__brand img {
    height: 2.5rem;
    margin: 0 0 0.75rem;
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn-primary:hover,
  .service-card:hover,
  .gallery__item:hover,
  .product-tag:hover {
    transform: none;
  }
}
