/* ============================================
   LAMB'S GREENHOUSES — Style System
   Plum + Amber palette, fresh & airy
   ============================================ */

/* ---------- Custom Properties ---------- */
:root {
  --color-plum-deep: #4A3050;
  --color-plum: #6B4F6E;
  --color-plum-mid: #8B6F8E;
  --color-plum-light: #B89AB0;
  --color-plum-pale: #E8DDE4;
  --color-plum-ghost: #F5F0F3;
  --color-amber: #D4A853;
  --color-amber-light: #E8C97A;
  --color-amber-pale: #FBF4E3;
  --color-cream: #FDF9F4;
  --color-warm-white: #FEFCFA;
  --color-text: #2D2030;
  --color-text-muted: #6B5E6E;
  --color-text-light: #9B8E9E;
  --color-border: #E8DDE4;
  --color-white: #FFFFFF;
  
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Nunito Sans', system-ui, sans-serif;
  
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  
  --shadow-sm: 0 1px 3px rgba(74, 48, 80, 0.06), 0 1px 2px rgba(74, 48, 80, 0.04);
  --shadow-md: 0 4px 16px rgba(74, 48, 80, 0.08), 0 2px 4px rgba(74, 48, 80, 0.04);
  --shadow-lg: 0 12px 40px rgba(74, 48, 80, 0.12), 0 4px 12px rgba(74, 48, 80, 0.06);
  --shadow-xl: 0 24px 60px rgba(74, 48, 80, 0.15);
  
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

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

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

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

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

a:hover {
  color: var(--color-plum-mid);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

/* ---------- Utility ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-md);
  background: var(--color-plum-deep);
  color: var(--color-white);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  z-index: 1000;
  font-weight: 600;
}

.skip-link:focus {
  top: var(--space-md);
}

em {
  font-style: italic;
  color: var(--color-plum);
}

/* ---------- Section Headings ---------- */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-amber);
  margin-bottom: var(--space-sm);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--color-plum-deep);
  margin-bottom: var(--space-lg);
}

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

.centered {
  text-align: center;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.85em 1.8em;
  border-radius: var(--radius-xl);
  transition: all var(--transition-base);
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-plum);
  color: var(--color-white);
  box-shadow: var(--shadow-md);
}

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

.btn-secondary {
  background: transparent;
  color: var(--color-plum);
  border: 1.5px solid var(--color-plum-light);
}

.btn-secondary:hover {
  background: var(--color-plum-pale);
  border-color: var(--color-plum);
  color: var(--color-plum-deep);
  transform: translateY(-2px);
}

.btn-light {
  background: var(--color-white);
  color: var(--color-plum-deep);
  box-shadow: var(--shadow-md);
}

.btn-light:hover {
  background: var(--color-plum-pale);
  color: var(--color-plum-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline-light {
  background: transparent;
  color: var(--color-plum-deep);
  border: 1.5px solid var(--color-plum-deep);
}

.btn-outline-light:hover {
  background: var(--color-plum-deep);
  color: var(--color-white);
  transform: translateY(-2px);
}

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

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(253, 249, 244, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition-base);
}

.site-header.scrolled {
  background: rgba(253, 249, 244, 0.95);
  border-bottom-color: var(--color-border);
  box-shadow: var(--shadow-sm);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--color-plum-deep);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
}

.logo:hover {
  color: var(--color-plum-deep);
}

.logo-icon {
  color: var(--color-plum);
}

.main-nav ul {
  display: flex;
  gap: var(--space-xs);
}

.main-nav a {
  display: block;
  padding: var(--space-sm) var(--space-md);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-muted);
  border-radius: var(--radius-xl);
  transition: all var(--transition-fast);
}

.main-nav a:hover {
  color: var(--color-plum);
  background: var(--color-plum-ghost);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}

.nav-toggle:hover {
  background: var(--color-plum-ghost);
}

.hamburger {
  position: relative;
  width: 20px;
  height: 14px;
  display: block;
}

.hamburger::before,
.hamburger::after,
.hamburger span {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-plum);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.hamburger::before { top: 0; }
.hamburger span { top: 6px; }
.hamburger::after { bottom: 0; }

.nav-toggle[aria-expanded="true"] .hamburger::before {
  transform: rotate(45deg);
  top: 6px;
}

.nav-toggle[aria-expanded="true"] .hamburger span {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
  transform: rotate(-45deg);
  bottom: 6px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-plum-ghost) 50%, var(--color-amber-pale) 100%);
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: radial-gradient(circle at 25% 25%, var(--color-plum) 1px, transparent 1px),
                    radial-gradient(circle at 75% 75%, var(--color-amber) 1px, transparent 1px);
  background-size: 48px 48px, 32px 32px;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  padding: var(--space-3xl) 0;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 540px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-amber);
  margin-bottom: var(--space-lg);
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--color-amber);
  border-radius: 2px;
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 600;
  line-height: 1.08;
  color: var(--color-plum-deep);
  margin-bottom: var(--space-xl);
}

.hero-headline em {
  color: var(--color-amber);
  font-style: italic;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-2xl);
  max-width: 480px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.hero-visual {
  position: relative;
}

.hero-image-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 5 / 6.2;
}

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

.hero-accent-card {
  position: absolute;
  bottom: var(--space-2xl);
  left: calc(-50% - 20px);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  background: var(--color-white);
  padding: var(--space-lg) var(--space-xl);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  color: var(--color-plum-deep);
  font-weight: 600;
  font-size: 0.95rem;
}

.hero-accent-card svg {
  color: var(--color-amber);
  flex-shrink: 0;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: var(--space-2xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  color: var(--color-text-light);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-plum-light), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* ---------- Intro / About ---------- */
.intro {
  padding: var(--space-4xl) 0;
  background: var(--color-white);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.intro-text p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
  font-size: 1.05rem;
}

.intro-text p:last-child {
  margin-bottom: 0;
}

.intro-visual {
  position: relative;
}

.intro-image-group {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.intro-image-group img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.intro-stat-card {
  position: absolute;
  bottom: var(--space-xl);
  right: calc(-50% - 10px);
  background: var(--color-white);
  padding: var(--space-lg) var(--space-2xl);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.intro-stat-card .stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--color-plum-deep);
  line-height: 1.2;
}

.intro-stat-card .stat-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: var(--space-xs);
}

/* ---------- Services ---------- */
.services {
  padding: var(--space-4xl) 0;
  background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-plum-ghost) 100%);
}

.services .section-header {
  margin-bottom: var(--space-3xl);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

.service-card {
  background: var(--color-white);
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-plum), var(--color-amber));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

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

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-plum-ghost);
  border-radius: var(--radius-md);
  color: var(--color-plum);
  margin-bottom: var(--space-lg);
  transition: all var(--transition-base);
}

.service-card:hover .service-icon {
  background: var(--color-plum);
  color: var(--color-white);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-plum-deep);
  margin-bottom: var(--space-sm);
}

.service-card p {
  color: var(--color-text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ---------- Why Us ---------- */
.why-us {
  padding: var(--space-4xl) 0;
  background: var(--color-white);
}

.why-us-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.reason-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.reason-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: var(--space-lg);
  align-items: start;
}

.reason-number {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--color-amber);
  line-height: 1;
  padding-top: 0.15em;
}

.reason-body h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-plum-deep);
  margin-bottom: var(--space-sm);
}

.reason-body p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.why-us-visual {
  position: relative;
}

.why-us-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.why-us-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 5 / 6.5;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.why-us-quote-card {
  position: absolute;
  bottom: calc(-50% - 10px);
  left: calc(-50% - 10px);
  background: var(--color-white);
  padding: var(--space-2xl);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  max-width: 300px;
}

.why-us-quote-card svg {
  color: var(--color-amber);
  margin-bottom: var(--space-md);
}

.why-us-quote-card blockquote {
  border: none;
  padding: 0;
  margin: 0;
}

.why-us-quote-card p {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--color-plum-deep);
  line-height: 1.5;
  margin-bottom: var(--space-sm);
}

.quote-source {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-light);
  letter-spacing: 0.05em;
}

/* ---------- CTA Strip ---------- */
.cta-strip {
  padding: var(--space-4xl) 0;
  background: linear-gradient(135deg, var(--color-plum-deep) 0%, var(--color-plum) 60%, var(--color-plum-mid) 100%);
  position: relative;
  overflow: hidden;
}

.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: radial-gradient(circle at 75% 25%, var(--color-amber) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.cta-inner {
  position: relative;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: var(--space-lg);
  line-height: 1.15;
}

.cta-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
  margin-bottom: var(--space-2xl);
}

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.cta-actions .btn-outline-light {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--color-white);
}

.cta-actions .btn-outline-light:hover {
  background: var(--color-white);
  color: var(--color-plum-deep);
  border-color: var(--color-white);
}

/* ---------- Contact ---------- */
.contact {
  padding: var(--space-4xl) 0;
  background: var(--color-cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
}

.contact-intro {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  margin-bottom: var(--space-2xl);
  line-height: 1.75;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
}

.contact-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  border-radius: var(--radius-md);
  color: var(--color-plum);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: var(--space-xs);
}

.contact-item p {
  color: var(--color-text);
  font-size: 1rem;
  line-height: 1.6;
}

.contact-item a {
  color: var(--color-plum);
}

.contact-item a:hover {
  color: var(--color-plum-deep);
  text-decoration: underline;
}

/* ---------- Contact Form ---------- */
.contact-form-wrapper {
  background: var(--color-white);
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.75em 1em;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-cream);
  color: var(--color-text);
  transition: all var(--transition-fast);
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-plum);
  background: var(--color-white);
  box-shadow: 0 0 0 3px rgba(107, 79, 110, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-text-light);
}

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

.form-note {
  font-size: 0.8rem;
  color: var(--color-text-light);
  text-align: center;
}

/* Success state */
.form-success {
  text-align: center;
  padding: var(--space-3xl) var(--space-xl);
}

.form-success .success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-plum-ghost);
  border-radius: 50%;
  color: var(--color-plum);
}

.form-success h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--color-plum-deep);
  margin-bottom: var(--space-sm);
}

.form-success p {
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-plum-deep);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-light {
  color: var(--color-white);
}

.logo-light .logo-icon {
  color: var(--color-amber-light);
}

.footer-brand p {
  margin-top: var(--space-md);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: var(--space-lg);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-amber-light);
}

.footer-contact address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact a:hover {
  color: var(--color-amber-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
  padding-top: var(--space-xl);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

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

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

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
    order: 1;
  }

  .hero-visual {
    order: 2;
    max-width: 400px;
    margin: 0 auto;
  }

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-accent-card {
    left: auto;
    right: 0;
    bottom: var(--space-xl);
  }

  .intro-grid,
  .why-us-layout,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .intro-stat-card {
    right: 0;
    left: 0;
  }

  .why-us-quote-card {
    left: 0;
    right: 0;
    max-width: 100%;
  }

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

@media (max-width: 768px) {
  .container {
    padding: 0 var(--space-lg);
  }

  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(253, 249, 244, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: var(--space-2xl);
    transform: translateX(100%);
    transition: transform var(--transition-base);
    z-index: 99;
  }

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

  .main-nav ul {
    flex-direction: column;
    gap: var(--space-xs);
  }

  .main-nav a {
    font-size: 1.1rem;
    padding: var(--space-md);
    border-radius: var(--radius-md);
  }

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

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

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

  .hero {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: var(--space-3xl);
  }

  .hero-scroll-indicator {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: 2.2rem;
  }

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

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

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-actions .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}
