/* ===========================
   VARIABLES & RESET
=========================== */
:root {
  --teal: #1d5c6d;
  --teal-dark: #154452;
  --teal-light: #2a7a8f;
  --gold: #D4A843;
  --gold-light: #e8c06a;
  --white: #ffffff;
  --off-white: #f8f7f4;
  --grey-light: #f0eeea;
  --grey: #8a8880;
  --dark: #1a1a1a;
  --text: #2d2d2d;

  --font-title: 'Montserrat', sans-serif;
  --font-body: 'Raleway', sans-serif;

  --radius: 6px;
  --radius-lg: 12px;
  --shadow: 0 4px 24px rgba(29, 92, 109, 0.10);
  --shadow-lg: 0 12px 48px rgba(29, 92, 109, 0.16);
  --transition: 0.3s ease;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }

/* ===========================
   TYPOGRAPHY
=========================== */
.section__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section__title {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  color: var(--teal-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section__desc {
  font-size: 1.05rem;
  color: var(--grey);
  max-width: 520px;
}

.section__header {
  text-align: center;
  margin-bottom: 56px;
}
.section__header .section__desc { margin: 0 auto; }

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
}

.btn--primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(212, 168, 67, 0.35);
}
.btn--primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 168, 67, 0.45);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

.btn--full { width: 100%; justify-content: center; }

/* ===========================
   HEADER / NAV
=========================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0;
  transition: all var(--transition);
}

.header.scrolled {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

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

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav__logo-svg {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}

.nav__logo-text {
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--white);
  transition: color var(--transition);
}

.header.scrolled .nav__logo-text { color: var(--teal-dark); }
.header.scrolled .nav__logo-svg rect,
.header.scrolled .nav__logo-svg polygon { stroke: var(--teal); }

.amp { color: var(--gold); }

.nav__menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__link {
  padding: 8px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.nav__link:hover { color: var(--white); background: rgba(255,255,255,0.1); }
.header.scrolled .nav__link { color: var(--teal); }
.header.scrolled .nav__link:hover { background: var(--grey-light); }

.nav__link--cta {
  background: var(--gold);
  color: var(--white) !important;
  padding: 10px 20px;
}
.nav__link--cta:hover { background: var(--gold-light) !important; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.header.scrolled .nav__toggle span { background: var(--teal); }

/* ===========================
   HERO
=========================== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 50%, #2a8a9f 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,0.03) 0px,
      rgba(255,255,255,0.03) 1px,
      transparent 1px,
      transparent 80px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(255,255,255,0.03) 0px,
      rgba(255,255,255,0.03) 1px,
      transparent 1px,
      transparent 80px
    );
}

.hero::after {
  content: '';
  position: absolute;
  right: -120px;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  border: 60px solid rgba(255,255,255,0.04);
  border-radius: 4px;
  transform: translateY(-50%) rotate(45deg);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(212,168,67,0.08) 0%, transparent 60%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding-top: 80px;
}

.hero__badge {
  display: inline-block;
  padding: 6px 18px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 2px;
  margin-bottom: 28px;
}

.hero__title {
  font-family: var(--font-title);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 24px;
}
.hero__title span { color: var(--gold); }

.hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
  max-width: 480px;
  line-height: 1.7;
}

.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===========================
   STATS
=========================== */
.stats {
  background: var(--teal-dark);
  padding: 48px 0;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat:last-child { border-right: none; }

.stat__number {
  font-family: var(--font-title);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat__label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  text-align: center;
}

/* ===========================
   SERVICES
=========================== */
.services { background: var(--off-white); }

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 1px solid rgba(29,92,109,0.08);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }

.service-card--featured {
  background: var(--teal);
  border-color: transparent;
}
.service-card--featured .service-card__title { color: var(--white); }
.service-card--featured .service-card__text { color: rgba(255,255,255,0.75); }
.service-card--featured .service-card__icon { color: var(--gold); }
.service-card--featured .service-card__link { color: var(--gold); }

.service-card__icon {
  width: 52px;
  height: 52px;
  color: var(--teal);
  margin-bottom: 24px;
}
.service-card__icon svg { width: 100%; height: 100%; }

.service-card__title {
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--teal-dark);
  margin-bottom: 14px;
}

.service-card__text {
  font-size: 0.92rem;
  color: var(--grey);
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-card__link {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--teal);
  text-transform: uppercase;
  transition: gap var(--transition);
  display: inline-flex;
  gap: 4px;
}
.service-card__link:hover { gap: 8px; }

/* ===========================
   EXPERTISE
=========================== */
.expertise { background: var(--white); }

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

/* Animated window frame */
.window-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  max-width: 440px;
}

.window-frame__outer {
  width: 100%;
  aspect-ratio: 1;
  border: 4px solid var(--teal);
  border-radius: 4px;
  padding: 20px;
  position: relative;
  box-shadow: var(--shadow-lg);
  background: var(--off-white);
}

.window-frame__outer::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 2px solid var(--gold);
  border-radius: 2px;
  opacity: 0.3;
}

.window-frame__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  height: 100%;
}

.window-frame__pane {
  background: linear-gradient(135deg, #e8f4f8 0%, #c8e4ec 100%);
  border-radius: 2px;
  border: 2px solid var(--teal);
  position: relative;
  overflow: hidden;
  animation: shimmer 4s ease-in-out infinite;
}

.window-frame__pane:nth-child(2) { animation-delay: 0.5s; }
.window-frame__pane:nth-child(3) { animation-delay: 1s; }
.window-frame__pane:nth-child(4) { animation-delay: 1.5s; }

.window-frame__pane::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.6) 0%, transparent 50%);
}

@keyframes shimmer {
  0%, 100% { background: linear-gradient(135deg, #e8f4f8 0%, #c8e4ec 100%); }
  50% { background: linear-gradient(135deg, #d4ecf4 0%, #a8d4e0 100%); }
}

.expertise__content { padding-left: 8px; }

.expertise__text {
  font-size: 1rem;
  color: var(--grey);
  line-height: 1.8;
  margin-bottom: 32px;
}

.expertise__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
}

.expertise__list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
}

.expertise__check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ===========================
   PRODUCTS / REALISATIONS
=========================== */
.products { background: var(--teal-dark); }
.products .section__tag { color: var(--gold); }
.products .section__title { color: var(--white); }
.products .section__desc { color: rgba(255,255,255,0.55); }

.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 240px 240px;
  gap: 12px;
}

.product-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}

.product-item--large {
  grid-column: span 2;
  grid-row: span 2;
}

.product-item__img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.product-item:hover .product-item__img { transform: scale(1.06); }

.product-item__img--1 { background-color: #2a6b7c; background-image: linear-gradient(135deg, #1d5c6d, #2a8a9f); }
.product-item__img--2 { background-color: #154452; background-image: linear-gradient(135deg, #154452, #1d5c6d); }
.product-item__img--3 { background-color: #0f3340; background-image: linear-gradient(135deg, #0f3340, #154452); }
.product-item__img--4 { background-color: #2a7a8f; background-image: linear-gradient(135deg, #2a7a8f, #3a9ab0); }
.product-item__img--5 { background-color: #1a4d5c; background-image: linear-gradient(135deg, #1a4d5c, #2a6b7c); }

.product-item__overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
  background: linear-gradient(transparent, rgba(10,30,36,0.9));
  transform: translateY(4px);
  transition: transform var(--transition);
}

.product-item:hover .product-item__overlay { transform: translateY(0); }

.product-item__cat {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.product-item__title {
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}

/* ===========================
   TESTIMONIALS
=========================== */
.testimonials { background: var(--off-white); }

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

.testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid rgba(29,92,109,0.08);
  transition: box-shadow var(--transition);
}
.testimonial:hover { box-shadow: var(--shadow-lg); }

.testimonial__stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial__text {
  font-size: 0.92rem;
  color: var(--grey);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.testimonial__author strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--teal-dark);
  margin-bottom: 2px;
}

.testimonial__author span {
  font-size: 0.78rem;
  color: var(--grey);
}

/* ===========================
   CONTACT
=========================== */
.contact { background: var(--white); }

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

.contact__text {
  font-size: 1rem;
  color: var(--grey);
  line-height: 1.75;
  margin-bottom: 40px;
}

.contact__details { display: flex; flex-direction: column; gap: 20px; }

.contact__detail {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--teal);
}
.contact__detail svg { flex-shrink: 0; }

/* Form */
.contact__form { display: flex; flex-direction: column; gap: 20px; }

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form__group label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-dark);
}

.form__group input,
.form__group select,
.form__group textarea {
  padding: 14px 16px;
  border: 1.5px solid #e0ddd8;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text);
  background: var(--off-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(29,92,109,0.1);
  background: var(--white);
}

.form__group input::placeholder,
.form__group textarea::placeholder { color: #bbb8b0; }
.form__group textarea { resize: vertical; min-height: 120px; }

.form__mention {
  font-size: 0.72rem;
  color: var(--grey);
  text-align: center;
}

/* ===========================
   FOOTER
=========================== */
.footer { background: var(--teal-dark); }

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 64px 24px;
}

.footer__tagline {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  margin-top: 16px;
  letter-spacing: 0.05em;
}

.footer__nav h4,
.footer__services h4,
.footer__contact h4 {
  font-family: var(--font-title);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer__nav ul li,
.footer__services ul li,
.footer__contact p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
  transition: color var(--transition);
}
.footer__nav ul li a:hover { color: var(--white); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 24px;
}
.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__bottom span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}
.footer__bottom strong { color: var(--gold); }
.footer__legal-line {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.footer__legal-links { display: flex; gap: 18px; }
.footer__legal-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer__legal-links a:hover { color: var(--white); }

/* Honeypot anti-spam */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

/* Title polish (Montserrat) */
.hero__title { letter-spacing: -0.015em; }
.section__title { letter-spacing: -0.01em; }

/* ===========================
   LEGAL PAGES
=========================== */
.legal-hero {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  padding: 140px 0 64px;
  text-align: center;
}
.legal-hero h1 {
  font-family: var(--font-title);
  font-weight: 700;
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: -0.01em;
}
.legal-hero p { color: rgba(255,255,255,0.7); margin-top: 10px; font-size: 0.95rem; }
.legal-content { padding: 64px 0 96px; }
.legal-content .container { max-width: 840px; }
.legal-content h2 {
  font-family: var(--font-title);
  font-weight: 600;
  color: var(--teal-dark);
  font-size: 1.25rem;
  margin: 44px 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--grey-light);
}
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content h3 { color: var(--teal); font-size: 1.02rem; margin: 26px 0 8px; }
.legal-content p,
.legal-content li {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 12px;
}
.legal-content ul { padding-left: 22px; list-style: disc; margin-bottom: 18px; }
.legal-content a { color: var(--teal); text-decoration: underline; }
.legal-content a:hover { color: var(--gold); }
.legal-table { width: 100%; border-collapse: collapse; margin: 18px 0 28px; }
.legal-table td {
  padding: 11px 16px;
  border: 1px solid var(--grey-light);
  font-size: 0.92rem;
  vertical-align: top;
}
.legal-table td:first-child {
  font-weight: 600;
  color: var(--teal-dark);
  width: 42%;
  background: var(--off-white);
}
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 36px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--teal);
}
.legal-back:hover { gap: 12px; }
.legal-update { font-size: 0.82rem; color: var(--grey); font-style: italic; margin-top: 8px; }

/* ===========================
   SCROLL ANIMATIONS
=========================== */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.2s; }
.fade-in:nth-child(4) { transition-delay: 0.3s; }
.fade-in:nth-child(5) { transition-delay: 0.4s; }

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
  .expertise__inner { gap: 48px; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  .services__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .expertise__inner { grid-template-columns: 1fr; }
  .expertise__visual { display: none; }
  .products__grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .product-item--large { grid-column: span 2; grid-row: span 1; height: 280px; }
  .testimonials__grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .contact__inner { grid-template-columns: 1fr; gap: 48px; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }

  .nav__menu {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    transform: translateY(-110%);
    transition: transform var(--transition);
    z-index: 99;
  }
  .nav__menu.open { transform: translateY(0); }
  .nav__link { color: var(--teal) !important; width: 100%; padding: 12px 16px; }
  .nav__link--cta { text-align: center; margin-top: 8px; }

  .nav__toggle { display: flex; }

  .hero__title { font-size: 2.4rem; }

  .products__grid { grid-template-columns: 1fr; }
  .product-item--large { grid-column: span 1; height: 220px; }

  .form__row { grid-template-columns: 1fr; }

  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom .container { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
}
