/* ============================================
   FRUITION DESIGN — Main Stylesheet
   Pure CSS · No build tools · Mobile-first
   ============================================ */

@import url('./fonts.css');

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  background: var(--color-bg);
}

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

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-accent-hover); }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.15;
  color: var(--color-text);
}

h1 { font-size: var(--text-hero); letter-spacing: -0.03em; }
h2 { font-size: var(--text-2xl); letter-spacing: -0.02em; }
h3 { font-size: var(--text-xl); }

.font-display { font-family: var(--font-display); font-weight: 400; }

.section-label {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-accent-2);
  font-weight: 600;
  margin-bottom: var(--space-sm);
  display: block;
}

/* === LAYOUT === */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.text-center { text-align: center; }

section { padding: var(--space-xl) 0; }

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-sm);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}
.btn-primary:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

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

.btn-outline-dark {
  background: transparent;
  color: var(--color-accent);
  border-color: var(--color-accent);
}
.btn-outline-dark:hover {
  background: var(--color-accent);
  color: var(--color-white);
}

.btn-outline-sm {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  border: 2px solid var(--color-accent);
  border-radius: var(--radius);
  color: var(--color-accent);
  font-weight: 600;
  font-size: var(--text-sm);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all var(--transition);
}
.btn-outline-sm:hover {
  background: var(--color-accent);
  color: var(--color-white);
}

.btn-white {
  background: var(--color-white);
  color: var(--color-accent);
  border-color: var(--color-white);
}
.btn-white:hover {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
  transform: translateY(-2px);
}

/* === NAVIGATION === */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  height: var(--nav-height);
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.is-scrolled {
  background: var(--color-white);
  box-shadow: 0 1px 0 var(--color-border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}

.nav-logo img { height: 44px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  list-style: none;
}

.nav-links a {
  font-weight: 600;
  font-size: var(--text-sm);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text);
  position: relative;
  padding: 0.25rem 0;
}

.nav-links a::after {
  content: '';
  display: block;
  height: 2px;
  background: var(--color-accent-2);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.nav-links a:hover::after,
.nav-links a.is-active::after { transform: scaleX(1); }

.has-hero .site-header:not(.is-scrolled) .nav-links a { color: var(--color-white); }
.has-hero .site-header:not(.is-scrolled) .nav-links .btn-outline-sm {
  color: var(--color-white);
  border-color: rgba(255,255,255,0.5);
}
.has-hero .site-header:not(.is-scrolled) .nav-links .btn-outline-sm:hover {
  background: var(--color-white);
  color: var(--color-accent);
}

/* === MOBILE MENU === */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 24px;
  position: relative;
  z-index: 110;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all var(--transition);
  position: absolute;
  left: 0;
}
.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav-toggle span:nth-child(3) { bottom: 0; }

.has-hero .site-header:not(.is-scrolled) .nav-toggle span { background: var(--color-white); }

.nav-toggle.is-open span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

/* === HERO — Split layout, left-aligned === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 0;
}

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

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.65) 0%,
    rgba(0,0,0,0.35) 40%,
    rgba(0,0,0,0.15) 70%,
    rgba(0,0,0,0.1) 100%
  );
}

.hero-content {
  position: relative; z-index: 2;
  color: var(--color-white);
  padding: 0 var(--space-md) 12vh;
  max-width: 680px;
}

.hero-eyebrow {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  opacity: 0.7;
  margin-bottom: var(--space-sm);
  font-weight: 600;
}

.hero-title {
  color: var(--color-white);
  margin-bottom: var(--space-md);
  text-shadow: 0 2px 24px rgba(0,0,0,0.3);
}

.hero-title .accent {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: normal;
  display: inline;
}

.hero-sub {
  font-size: var(--text-md);
  font-weight: 300;
  opacity: 0.85;
  margin-bottom: var(--space-md);
  line-height: 1.8;
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  right: var(--space-md);
  z-index: 2;
}

.hero-scroll span {
  display: block;
  width: 1px; height: 60px;
  background: rgba(255,255,255,0.3);
  position: relative;
}

.hero-scroll span::after {
  content: '';
  width: 1px; height: 20px;
  background: rgba(255,255,255,0.8);
  position: absolute;
  top: 0; left: 0;
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { top: 0; opacity: 1; }
  100% { top: 40px; opacity: 0; }
}

/* === INTRO STRIP === */
.intro-strip {
  padding: var(--space-xl) 0 var(--space-lg);
}

.intro-strip .container {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-lg);
  align-items: start;
}

.intro-headline {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--color-accent);
  line-height: 1.3;
}

.intro-body {
  color: var(--color-text-muted);
  font-size: var(--text-md);
  line-height: 1.9;
}

.intro-body p + p { margin-top: var(--space-sm); }

.intro-location {
  margin-top: var(--space-sm);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  opacity: 0.7;
}

/* === WHY FRUITION — Offset image/text rows === */
.why-section { padding: var(--space-xl) 0; }

.why-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-lg);
  align-items: center;
  margin-bottom: var(--space-xl);
}

.why-row:last-child { margin-bottom: 0; }

.why-row--reverse { grid-template-columns: 0.9fr 1.1fr; }
.why-row--reverse .why-text { order: -1; }

.why-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
}

.why-text h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-sm);
  color: var(--color-accent);
  font-weight: 300;
}

.why-text p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
  line-height: 1.9;
}

.why-text .link-arrow {
  font-weight: 600;
  font-size: var(--text-sm);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-accent-2);
  transition: all var(--transition);
}
.why-text .link-arrow:hover {
  color: var(--color-accent-2-hover);
}

/* === SERVICES — Editorial list, not grid === */
.services-section {
  background: var(--color-surface);
  padding: var(--space-xl) 0;
}

.services-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.services-featured {
  border-right: 1px solid var(--color-border);
  padding-right: var(--space-lg);
}

.services-featured h3 {
  font-size: var(--text-2xl);
  font-weight: 300;
  margin-bottom: var(--space-sm);
  color: var(--color-accent);
}

.services-featured p {
  color: var(--color-text-muted);
  line-height: 1.9;
  font-size: var(--text-md);
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding-top: var(--space-xs);
}

.service-item {
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--color-border);
}

.service-item:last-child { border-bottom: none; }

.service-item h4 {
  font-size: var(--text-md);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.service-item p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* === PORTFOLIO === */
.portfolio-section { padding: var(--space-xl) 0; }

.portfolio-grid {
  display: grid;
  gap: var(--space-md);
}

.portfolio-grid--home {
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: auto auto;
}

.portfolio-grid--home .portfolio-card:first-child {
  grid-row: 1 / 3;
}

.portfolio-grid--full {
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}

.portfolio-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  display: block;
}

.portfolio-card img {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
  width: 100%; height: 100%;
  object-fit: cover;
}

.portfolio-card:hover img { transform: scale(1.04); }

.portfolio-overlay {
  position: absolute; inset: 0;
  background: var(--color-overlay);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: var(--space-md);
  color: white;
}

.portfolio-card:hover .portfolio-overlay { opacity: 1; }

.portfolio-info { transform: translateY(8px); transition: transform 0.4s ease; }
.portfolio-card:hover .portfolio-info { transform: translateY(0); }

.portfolio-name {
  font-size: var(--text-md);
  font-weight: 600;
  display: block;
  margin-bottom: 0.25rem;
}

.portfolio-type {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.75;
}

/* === PORTFOLIO FILTER === */
.portfolio-filters {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}

.filter-btn {
  background: none;
  border: none;
  padding: 0.25rem 0;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-sm);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--color-text-muted);
  transition: all var(--transition);
  position: relative;
}

.filter-btn::after {
  content: '';
  display: block;
  height: 2px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.filter-btn:hover,
.filter-btn.is-active { color: var(--color-accent); }
.filter-btn.is-active::after { transform: scaleX(1); }

/* === TESTIMONIALS — Pull quote style === */
.testimonials-section {
  background: var(--color-surface);
  padding: var(--space-xl) 0;
}

.testimonials-slider {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  min-height: 280px;
}

.testimonial-slide {
  display: none;
  padding: var(--space-md) 0;
}

.testimonial-slide.is-active { display: block; }

.quote-mark {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--color-accent);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: -1rem;
  display: block;
}

.quote-text {
  font-size: var(--text-lg);
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: var(--space-md);
  font-weight: 300;
}

.quote-author {
  display: block;
  font-weight: 700;
  font-size: var(--text-sm);
  font-style: normal;
  color: var(--color-accent);
  letter-spacing: 0.02em;
}

.quote-title {
  display: block;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: 0.25rem;
}

.slider-dots {
  display: flex;
  gap: 0.75rem;
  margin-top: var(--space-md);
}

.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--color-border);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}

.slider-dot.is-active {
  background: var(--color-accent);
  transform: scale(1.4);
}

/* === CTA BANNER === */
.cta-banner {
  background: var(--color-accent);
  color: var(--color-white);
  padding: var(--space-xl) 0;
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-lg);
  align-items: center;
}

.cta-banner h2 {
  color: var(--color-white);
  font-size: var(--text-xl);
  font-weight: 300;
  max-width: 560px;
}

.cta-banner h2 em {
  font-family: var(--font-display);
  font-style: normal;
}

/* === FOOTER === */
.site-footer {
  background: var(--color-text);
  color: rgba(255,255,255,0.6);
  padding: var(--space-lg) 0 var(--space-md);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand img {
  height: 36px; width: auto;
  margin-bottom: var(--space-sm);
  filter: brightness(0) invert(1);
}

.footer-brand p { font-size: var(--text-sm); line-height: 1.6; max-width: 280px; }

.footer-nav {
  display: flex;
  gap: var(--space-md);
}

.footer-nav a {
  color: rgba(255,255,255,0.6);
  font-weight: 600;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--color-white); }

.footer-contact { text-align: right; font-size: var(--text-sm); }
.footer-contact a { color: rgba(255,255,255,0.6); }
.footer-contact a:hover { color: var(--color-white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p { font-size: var(--text-xs); opacity: 0.4; }

.theme-switcher { display: flex; gap: 0.5rem; align-items: center; }

.theme-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}

.theme-dot:hover { transform: scale(1.3); border-color: rgba(255,255,255,0.6); }
.theme-dot--evergreen { background: #2D5A3D; }
.theme-dot--coastal { background: #1A5276; }
.theme-dot--wildflower { background: #6B3F6B; }

/* === PAGE HERO (inner pages) === */
.page-hero {
  background: var(--color-surface);
  padding: calc(var(--nav-height) + var(--space-xl)) 0 var(--space-lg);
}

.page-hero h1 { font-size: var(--text-2xl); margin-bottom: var(--space-xs); }
.page-hero p { color: var(--color-text-muted); font-size: var(--text-md); max-width: 600px; }

.page-hero--center { text-align: center; }
.page-hero--center p { margin: 0 auto; }

/* === ABOUT PAGE === */
.about-section { padding: var(--space-xl) 0; }

.about-content {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: var(--space-xl);
  align-items: start;
}

.about-photo img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
}

.about-text h2 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-sm);
  color: var(--color-accent);
  font-weight: 300;
}

.about-text p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
  line-height: 1.9;
}

.about-pullquote {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-accent);
  border-left: 3px solid var(--color-accent-2);
  padding-left: var(--space-md);
  margin: var(--space-lg) 0;
  line-height: 1.5;
}

.values-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.value-item h3 {
  font-size: var(--text-md);
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: var(--space-xs);
}

.value-item p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* === CONTACT PAGE === */
.contact-section { padding: var(--space-xl) 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact-info h2 {
  font-size: var(--text-xl);
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
  font-weight: 300;
}

.contact-info p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
  line-height: 1.9;
}

.contact-detail {
  margin-bottom: var(--space-sm);
  font-size: var(--text-base);
}

.contact-detail strong {
  display: block;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-bottom: 0.25rem;
}

.contact-form {
  background: var(--color-white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.form-group { margin-bottom: var(--space-sm); }

.form-group label {
  display: block;
  font-weight: 600;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.4rem;
  color: var(--color-text);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background: var(--color-bg);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-accent);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

/* === SEO LANDING PAGE === */
.seo-hero {
  background: var(--color-surface);
  padding: calc(var(--nav-height) + var(--space-xl)) 0 var(--space-xl);
}

.seo-hero-inner {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: var(--space-lg);
  align-items: center;
}

.seo-hero h1 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-sm);
}

.seo-hero p {
  color: var(--color-text-muted);
  font-size: var(--text-md);
  line-height: 1.9;
  margin-bottom: var(--space-md);
}

.seo-hero-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.seo-industries {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
}

.seo-industry {
  background: var(--color-white);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-accent);
  box-shadow: var(--shadow);
}

.advantages-section { padding: var(--space-xl) 0; }

.advantages-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.advantage-card {
  padding-left: var(--space-md);
  border-left: 3px solid var(--color-accent-2);
}

.advantage-card h3 {
  font-size: var(--text-md);
  font-weight: 600;
  margin-bottom: var(--space-xs);
  color: var(--color-accent);
}

.advantage-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* === ANIMATIONS === */
[data-anim] {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-anim="from-left"]  { transform: translateX(-40px); }
[data-anim="from-right"] { transform: translateX(40px); }
[data-anim="from-bottom"]{ transform: translateY(32px); }
[data-anim="fade"]       { transform: scale(0.98); }
[data-anim].is-visible   { opacity: 1; transform: none; }

[data-anim-group] > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

[data-anim-group].is-visible > *:nth-child(1) { transition-delay: 0.05s; }
[data-anim-group].is-visible > *:nth-child(2) { transition-delay: 0.12s; }
[data-anim-group].is-visible > *:nth-child(3) { transition-delay: 0.19s; }
[data-anim-group].is-visible > *:nth-child(4) { transition-delay: 0.26s; }
[data-anim-group].is-visible > *:nth-child(5) { transition-delay: 0.33s; }
[data-anim-group].is-visible > * { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  [data-anim], [data-anim-group] > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .nav-toggle { display: block; }

  .nav-links {
    position: fixed;
    top: 0; right: 0;
    width: 280px; height: 100vh;
    background: var(--color-white);
    flex-direction: column;
    justify-content: center;
    gap: var(--space-md);
    transform: translateX(100%);
    transition: transform var(--transition);
    box-shadow: var(--shadow-lg);
    padding: var(--space-lg);
  }

  .nav-links.is-open { transform: translateX(0); }

  .nav-links a { color: var(--color-text) !important; font-size: var(--text-base); }
  .nav-links .btn-outline-sm { color: var(--color-accent) !important; border-color: var(--color-accent) !important; }

  .hero-content { padding-bottom: 8vh; }

  .intro-strip .container,
  .why-row, .why-row--reverse,
  .services-layout,
  .portfolio-grid--home,
  .about-content,
  .contact-grid,
  .seo-hero-inner,
  .advantages-grid,
  .cta-inner {
    grid-template-columns: 1fr;
  }

  .why-row--reverse .why-text { order: 0; }
  .services-featured { border-right: none; padding-right: 0; border-bottom: 1px solid var(--color-border); padding-bottom: var(--space-md); }
  .footer-inner { flex-direction: column; gap: var(--space-md); }
  .footer-contact { text-align: left; }
  .footer-bottom { flex-direction: column; gap: var(--space-sm); text-align: center; }
  .values-row { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-inner { text-align: center; }
}

@media (max-width: 600px) {
  h1 { font-size: clamp(2rem, 8vw, 3rem); }
  h2 { font-size: clamp(1.5rem, 5vw, 2.2rem); }
  .portfolio-grid--home { gap: var(--space-sm); }
  .hero-content { max-width: 100%; }
}
