/* ========================================
   Markham Landscape Products
   Brand colors: Orange #e96200, Green #7d826e
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,600;9..144,700;9..144,800&family=Outfit:wght@300;400;500;600&display=swap');

:root {
  --orange: #e96200;
  --orange-dark: #c75400;
  --orange-light: #ff7a1a;
  --green: #7d826e;
  --green-light: #969b87;
  --green-dark: #5d6152;
  --cream: #e7e7d6;
  --cream-light: #f3f3e8;
  --dark: #2d2d2d;
  --dark-deep: #1a1a1a;
  --white: #ffffff;
  --text: #2d2d2d;
  --text-light: #5a5a5a;
  --border: #d4d4c4;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

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

a {
  color: var(--orange);
  text-decoration: none;
  transition: color 150ms ease;
}

a:hover {
  color: var(--orange-dark);
}

a:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
  border-radius: 2px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--dark);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.35rem); }

p + p { margin-top: 1em; }

ul, ol { padding-left: 1.25em; }

/* Skip Link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  padding: 0.75rem 1.5rem;
  background: var(--orange);
  color: var(--white);
  font-weight: 600;
  border-radius: 0 0 6px 6px;
  z-index: 9999;
  transition: top 200ms ease;
}

.skip-link:focus {
  top: 0;
  color: var(--white);
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.container--wide {
  max-width: 1400px;
}

.container--narrow {
  max-width: 800px;
}

/* ========================================
   HEADER / NAV
   ======================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 300ms ease;
}

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

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 1rem;
}

.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-link img {
  height: 42px;
  width: auto;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  min-width: 44px;
  min-height: 44px;
  position: relative;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: all 300ms var(--ease-out);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 28px; }

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  top: 21px;
  transform: translateX(-50%) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  top: 21px;
  transform: translateX(-50%) rotate(-45deg);
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 0.25rem;
  padding: 0;
}

.main-nav a {
  display: block;
  padding: 0.5rem 0.9rem;
  color: var(--text);
  font-weight: 500;
  font-size: 0.925rem;
  border-radius: 6px;
  transition: background 150ms ease, color 150ms ease;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
  background: var(--cream-light);
  color: var(--orange);
}

.main-nav a:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: -2px;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1.25rem;
  background: var(--orange);
  color: var(--white) !important;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 6px;
  transition: background 150ms ease, transform 150ms ease, box-shadow 150ms ease;
  white-space: nowrap;
}

.header-cta:hover {
  background: var(--orange-dark);
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(233, 98, 0, 0.3);
}

.header-cta:active {
  transform: translateY(0);
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 150ms ease;
  min-height: 48px;
  text-decoration: none;
}

.btn--primary {
  background: var(--orange);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--orange-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(233, 98, 0, 0.35);
}

.btn--primary:active {
  transform: translateY(0);
  box-shadow: none;
}

.btn--secondary {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
}

.btn--secondary:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--secondary:active {
  transform: translateY(0);
}

.btn--white {
  background: var(--white);
  color: var(--orange);
}

.btn--white:hover {
  background: var(--cream);
  color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.btn--green {
  background: var(--green);
  color: var(--white);
}

.btn--green:hover {
  background: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(125, 130, 110, 0.35);
}

.btn:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
}

/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark-deep);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,0.82) 0%, rgba(45,45,45,0.55) 60%, rgba(233,98,0,0.15) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 6rem 0 5rem;
  max-width: 680px;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  animation: fadeSlideUp 600ms var(--ease-out) both;
}

.hero-content p {
  color: rgba(255,255,255,0.88);
  font-size: 1.15rem;
  line-height: 1.75;
  margin-bottom: 2rem;
  animation: fadeSlideUp 600ms var(--ease-out) 100ms both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: fadeSlideUp 600ms var(--ease-out) 200ms both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  padding: 0.5rem 1rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border-radius: 50px;
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  font-weight: 500;
  animation: fadeIn 600ms var(--ease-out) 400ms both;
}

.hero-badge strong {
  color: var(--orange-light);
}

/* Hero variants */
.hero--short {
  min-height: 40vh;
}

.hero--short .hero-content {
  padding: 4rem 0 3.5rem;
}

/* ========================================
   SECTIONS
   ======================================== */
.section {
  padding: 5rem 0;
}

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

.section--dark {
  background: var(--dark);
  color: rgba(255,255,255,0.88);
}

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

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

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

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

.section--orange h2 {
  color: var(--white);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.section-header h2 {
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--text-light);
  font-size: 1.05rem;
}

.section--dark .section-header p {
  color: rgba(255,255,255,0.7);
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange);
  margin-bottom: 0.75rem;
}

.section--dark .section-label {
  color: var(--orange-light);
}

/* Angled divider */
.section--angled {
  position: relative;
  padding-top: 7rem;
}

.section--angled::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--white);
  clip-path: polygon(0 0, 100% 0, 100% 30%, 0 100%);
  z-index: 1;
}

.section--cream.section--angled::before {
  background: var(--cream-light);
}

/* ========================================
   PRODUCT CARDS
   ======================================== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.product-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  group: card;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--ease-out);
}

.product-card:hover img {
  transform: scale(1.06);
}

.product-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,0.85) 0%, rgba(26,26,26,0.2) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  transition: background 300ms ease;
}

.product-card:hover .product-card-overlay {
  background: linear-gradient(to top, rgba(233,98,0,0.85) 0%, rgba(233,98,0,0.3) 50%, transparent 100%);
}

.product-card h3 {
  color: var(--white);
  font-size: 1.35rem;
  margin-bottom: 0.25rem;
}

.product-card p {
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  font-weight: 500;
}

.product-card .card-arrow {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 300ms var(--ease-out);
  opacity: 0;
  transform: translateX(-8px);
}

.product-card:hover .card-arrow {
  opacity: 1;
  transform: translateX(0);
  background: var(--white);
}

.product-card .card-arrow svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--orange);
  stroke-width: 2;
}

/* ========================================
   ABOUT PREVIEW
   ======================================== */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-preview-text .section-label {
  margin-bottom: 0.75rem;
}

.about-preview-text h2 {
  margin-bottom: 1rem;
}

.about-preview-text p {
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.about-preview-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.about-preview-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about-preview-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--orange);
}

/* Stats row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.stat-item {
  text-align: center;
  padding: 1.25rem;
  background: var(--cream-light);
  border-radius: 10px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 0.25rem;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 2rem;
  transition: transform 300ms var(--ease-out), border-color 300ms ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(233,98,0,0.4);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  fill: var(--orange-light);
}

.testimonial-card blockquote {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.25rem;
  font-style: normal;
}

.testimonial-author {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
}

.testimonial-source {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  margin-top: 0.15rem;
}

/* ========================================
   LOCATION CARDS
   ======================================== */
.location-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.location-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 300ms var(--ease-out), box-shadow 300ms ease;
}

.location-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.location-card-img {
  height: 200px;
  overflow: hidden;
}

.location-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--ease-out);
}

.location-card:hover .location-card-img img {
  transform: scale(1.05);
}

.location-card-body {
  padding: 1.5rem;
}

.location-card h3 {
  margin-bottom: 0.25rem;
  font-size: 1.3rem;
}

.location-tagline {
  font-size: 0.85rem;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.location-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.location-card a.location-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--orange);
  font-size: 1rem;
  margin-top: 0.5rem;
}

.location-card a.location-phone:hover {
  color: var(--orange-dark);
}

/* Location detail (locations page) */
.location-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
}

.location-detail:last-child {
  border-bottom: none;
}

.location-detail:nth-child(even) {
  direction: rtl;
}

.location-detail:nth-child(even) > * {
  direction: ltr;
}

.location-detail-img {
  border-radius: 12px;
  overflow: hidden;
}

.location-detail-img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.location-detail-info h3 {
  font-size: 1.6rem;
  margin-bottom: 0.25rem;
}

.location-detail-info .location-tagline {
  margin-bottom: 1rem;
}

.location-detail-info p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.location-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}

.location-meta-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.location-meta-item svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  fill: none;
  stroke: var(--orange);
  stroke-width: 2;
}

.location-meta-item strong {
  font-weight: 600;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
  text-align: center;
  padding: 5rem 0;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* ========================================
   TEAM GRID
   ======================================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.team-card {
  text-align: center;
  transition: transform 300ms var(--ease-out);
}

.team-card:hover {
  transform: translateY(-4px);
}

.team-card-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  overflow: hidden;
  border: 3px solid var(--cream);
  transition: border-color 300ms ease;
}

.team-card:hover .team-card-photo {
  border-color: var(--orange);
}

.team-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card-photo--placeholder {
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-card-photo--placeholder span {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--green);
}

.team-card h4 {
  font-size: 1rem;
  margin-bottom: 0.15rem;
}

.team-card p {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ========================================
   VALUES / FEATURES GRID
   ======================================== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.value-card {
  padding: 2rem;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: transform 300ms var(--ease-out), box-shadow 300ms ease;
}

.value-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.value-card h4 {
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.value-card p {
  font-size: 0.95rem;
  color: var(--text-light);
}

.value-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.value-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 2;
}

/* ========================================
   PRODUCT CATEGORIES (products page)
   ======================================== */
.product-category {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--border);
}

.product-category:last-child {
  border-bottom: none;
}

.product-category:nth-child(even) {
  direction: rtl;
}

.product-category:nth-child(even) > * {
  direction: ltr;
}

.product-category-img {
  border-radius: 12px;
  overflow: hidden;
}

.product-category-img img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.product-category-info h3 {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
}

.product-category-info p {
  color: var(--text-light);
  margin-bottom: 1.25rem;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.product-tag {
  padding: 0.35rem 0.9rem;
  background: var(--cream);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--green-dark);
}

/* ========================================
   GALLERY
   ======================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--ease-out);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background 300ms ease;
}

.gallery-item:hover::after {
  background: rgba(233, 98, 0, 0.15);
}

.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

/* ========================================
   FORM
   ======================================== */
.quote-form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.form-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2.5rem;
  border: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(233, 98, 0, 0.1);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #aaa;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-status {
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
  display: none;
  font-weight: 500;
}

.form-status.success {
  display: block;
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
}

.form-status.error {
  display: block;
  background: #ffebee;
  color: #c62828;
  border: 1px solid #ef9a9a;
}

/* Why choose us (sidebar on quote page) */
.why-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.why-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.why-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 2;
}

.why-item h4 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.why-item p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* ========================================
   CAREERS
   ======================================== */
.careers-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.careers-highlight {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--cream-light);
  border-radius: 12px;
  transition: transform 300ms var(--ease-out);
}

.careers-highlight:hover {
  transform: translateY(-3px);
}

.careers-highlight-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
}

.careers-highlight-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2;
}

.careers-highlight p {
  font-weight: 500;
  color: var(--text);
  line-height: 1.5;
}

/* ========================================
   BRAND PARTNERS
   ======================================== */
.partners-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 1.5rem 0;
  opacity: 0.7;
  font-size: 0.95rem;
  color: var(--text-light);
  font-weight: 500;
}

.partners-row span {
  white-space: nowrap;
}

.section--dark .partners-row {
  color: rgba(255,255,255,0.5);
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
  background: var(--dark-deep);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand img {
  height: 38px;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 150ms ease;
}

.footer-social a:hover {
  background: var(--orange);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: rgba(255,255,255,0.8);
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  font-family: var(--font-body);
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: color 150ms ease;
}

.footer-col a:hover {
  color: var(--orange-light);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.footer-contact-item svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 4px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 2;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

.footer-partners {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideFromLeft {
  from {
    opacity: 0;
    transform: translateX(-32px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideFromRight {
  from {
    opacity: 0;
    transform: translateX(32px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleUp {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Scroll reveal base */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 500ms var(--ease-out), transform 500ms var(--ease-out);
}

.reveal--left {
  transform: translateX(-32px);
}

.reveal--right {
  transform: translateX(32px);
}

.reveal--scale {
  transform: scale(0.92);
}

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

/* Staggered children */
.stagger-children .reveal:nth-child(1) { transition-delay: 0ms; }
.stagger-children .reveal:nth-child(2) { transition-delay: 80ms; }
.stagger-children .reveal:nth-child(3) { transition-delay: 160ms; }
.stagger-children .reveal:nth-child(4) { transition-delay: 240ms; }
.stagger-children .reveal:nth-child(5) { transition-delay: 320ms; }
.stagger-children .reveal:nth-child(6) { transition-delay: 400ms; }
.stagger-children .reveal:nth-child(7) { transition-delay: 480ms; }
.stagger-children .reveal:nth-child(8) { transition-delay: 560ms; }

/* ========================================
   REDUCED MOTION
   ======================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

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

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

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

  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 1;
    aspect-ratio: 16/9;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    padding: 5rem 1.5rem 2rem;
    box-shadow: -4px 0 24px rgba(0,0,0,0.1);
    transition: right 300ms var(--ease-out);
    z-index: 99;
    overflow-y: auto;
  }

  .main-nav.open {
    right: 0;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
  }

  .main-nav a {
    padding: 0.9rem 0.5rem;
    font-size: 1rem;
    border-bottom: 1px solid var(--cream);
  }

  .header-cta-mobile {
    display: block;
    margin-top: 1.5rem;
    text-align: center;
  }

  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 98;
  }

  .nav-overlay.active {
    display: block;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 60vh;
  }

  .hero-content {
    padding: 4rem 0 3rem;
  }

  .hero-content h1 {
    font-size: clamp(2rem, 7vw, 2.6rem);
  }

  .about-preview {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-preview-image {
    order: -1;
  }

  .stats-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

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

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

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

  .product-category {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .product-category:nth-child(even) {
    direction: ltr;
  }

  .product-category-img img {
    height: 250px;
  }

  .location-detail {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .location-detail:nth-child(even) {
    direction: ltr;
  }

  .quote-form-wrapper {
    grid-template-columns: 1fr;
  }

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

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

  .careers-highlights {
    grid-template-columns: 1fr;
  }

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

  .gallery-item:nth-child(1) {
    grid-column: span 2;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .section {
    padding: 3.5rem 0;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .stats-row {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

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

  .gallery-item:nth-child(1) {
    grid-column: span 1;
  }

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

  .team-card-photo {
    width: 100px;
    height: 100px;
  }
}
