/* ============================================
   Красота в камне — Ландшафтный дизайн
   Static Site Styles
   ============================================ */

:root {
  --garden-green: #6B7F5E;
  --garden-green-dark: #5A6E4E;
  --garden-beige: #F5F0E8;
  --garden-sand: #E8DFD0;
  --garden-pebble: #3D3832;
  --garden-leaf: #C4D4B0;
  --garden-moss: #8B9E7A;
  --garden-cream: #FAF8F4;
  --garden-earth: #2C2824;
  --garden-gray: #9A9590;
  --garden-gravel: #D4CFC7;
  --radius: 1.5rem;
  --radius-sm: 1.25rem;
  --radius-lg: 2rem;
  --shadow-card: 0 8px 32px rgba(61,56,50,0.08), 0 2px 8px rgba(61,56,50,0.04);
  --shadow-card-hover: 0 16px 48px rgba(61,56,50,0.12), 0 4px 12px rgba(61,56,50,0.06);
  --shadow-float: 0 24px 64px rgba(61,56,50,0.15);
  --shadow-button: 0 4px 16px rgba(107,127,94,0.3);
  --shadow-button-hover: 0 8px 24px rgba(107,127,94,0.4);
}

/* Reset & Base */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--garden-cream);
  color: var(--garden-pebble);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
ul { list-style: none; }

/* Typography */
.font-heading {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
}

.section-label {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--garden-green);
  display: inline-block;
  margin-bottom: 1rem;
}

.heading-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--garden-pebble);
}

.heading-h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(22px, 2.5vw, 32px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--garden-pebble);
}

.body-text {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--garden-gray);
}

/* Layout */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}
.section-sand { background: var(--garden-sand); }
.section-dark { background: var(--garden-earth); }
.section-title { margin-bottom: 3rem; max-width: 800px; }
.section-subtitle {
  font-size: 1.125rem;
  color: var(--garden-gray);
  max-width: 600px;
  margin-bottom: 3rem;
  line-height: 1.6;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--garden-green);
  color: white;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  padding: 0.875rem 2rem;
  border-radius: 9999px;
  box-shadow: var(--shadow-button);
  transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
}
.btn-primary:hover {
  background: var(--garden-green-dark);
  box-shadow: var(--shadow-button-hover);
  transform: translateY(-2px);
}
.btn-primary:active { transform: scale(0.97); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.15);
  color: white;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  padding: 0.875rem 2rem;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,0.3);
  transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}
.btn-secondary:hover { background: rgba(255,255,255,0.25); }

/* Navigation */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
  background: transparent;
}
#navbar.scrolled {
  background: rgba(250,248,244,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(212,207,199,0.5);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 1.5rem;
}
.nav-brand { display: flex; flex-direction: column; }
.nav-brand-name {
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 300ms;
}
#navbar:not(.scrolled) .nav-brand-name { color: white; }
#navbar.scrolled .nav-brand-name { color: var(--garden-pebble); }
.nav-brand-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.875rem;
  color: var(--garden-green);
  line-height: 1.2;
}
.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}
.nav-link {
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 300ms;
}
#navbar:not(.scrolled) .nav-link { color: rgba(255,255,255,0.7); }
#navbar:not(.scrolled) .nav-link:hover { color: white; }
#navbar.scrolled .nav-link { color: var(--garden-gray); }
#navbar.scrolled .nav-link:hover { color: var(--garden-pebble); }
.nav-cta {
  display: none;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: #5A6E4E;
  border: 1px solid rgba(196, 212, 176, 0.3);
  padding: 10px 18px;
  border-radius: 14px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.15);
  transition: all 300ms ease;
}
.nav-cta:hover {
  background: #4d5f43;
  transform: translateY(-1px);
  box-shadow: 0 5px 16px rgba(0,0,0,0.2);
}
.nav-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 60;
}
.nav-hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  transition: all 300ms;
}
#navbar:not(.scrolled) .nav-hamburger span { background: white; }
#navbar.scrolled .nav-hamburger span { background: var(--garden-pebble); }

/* Nav Social Icons */
.nav-social {
  display: none;
  align-items: center;
  gap: 0.5rem;
}
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
  transition: all 300ms ease;
}
#navbar.scrolled .social-icon {
  border-color: rgba(61,56,50,0.15);
  color: var(--garden-green);
}
.social-icon:hover {
  background: var(--garden-green);
  border-color: var(--garden-green);
  color: white;
  transform: translateY(-2px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--garden-cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
}
.mobile-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.mobile-social a {
  font-size: 13px;
  font-weight: 500;
  color: var(--garden-green);
  transition: color 300ms;
}
.mobile-social a:hover { color: var(--garden-green-dark); }
  transition: transform 400ms cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  padding: 0.5rem;
  color: var(--garden-pebble);
}
.mobile-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.mobile-link {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--garden-pebble);
  transition: color 300ms;
}
.mobile-link:hover { color: var(--garden-green); }
.mobile-cta { margin-top: 1rem; }

/* Hero */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(44,40,36,0.3) 0%, rgba(44,40,36,0.6) 100%);
}
.hero-content {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 140px 1.5rem 80px;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}
.hero-label-wrap {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 1.5rem;
}
.hero-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.15em;
  white-space: nowrap;
  color: rgba(255,255,255,0.9);
  background: rgba(107, 127, 94, 0.5);
  border: 1px solid rgba(196, 212, 176, 0.35);
  padding: 8px 20px;
  border-radius: 24px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  color: white;
  line-height: 1.0;
  letter-spacing: -0.02em;
  font-size: clamp(38px, 5.5vw, 72px);
  text-shadow: 0 2px 40px rgba(0,0,0,0.3);
}
.hero-title-line { display: block; }
.hero-subtitle {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.9);
  max-width: 640px;
  margin-top: 1.5rem;
  line-height: 1.7;
}
.hero-note {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin-top: 1rem;
  line-height: 1.6;
}
.hero-trust {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.55);
  max-width: 640px;
  margin-top: 2rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  font-family: 'Inter', sans-serif;
}
.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 3rem;
}
.hero-tag {
  position: relative;
  display: inline-block;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.8);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  overflow: hidden;
  transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

/* Shimmer gloss effect on hover */
.hero-tag::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(196, 212, 176, 0.35),
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 600ms cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.hero-tag:hover::before {
  left: 140%;
}
.hero-tag:hover {
  background: rgba(107, 127, 94, 0.45);
  border-color: rgba(196, 212, 176, 0.5);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(107, 127, 94, 0.3), 0 0 1px rgba(196, 212, 176, 0.4);
}
.hero-tag:active {
  transform: translateY(0) scale(0.97);
  transition-duration: 100ms;
}

/* Services Carousel */
.carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.services-carousel {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0.5rem 0.25rem;
}
.services-carousel::-webkit-scrollbar { display: none; }
.service-card {
  flex: 0 0 85%;
  min-width: 280px;
  max-width: 380px;
  scroll-snap-align: start;
  background: var(--garden-beige);
  border-radius: var(--radius);
  padding: 2rem 2.5rem;
  box-shadow: var(--shadow-card);
  transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(61,56,50,0.12), 0 8px 24px rgba(107,127,94,0.15);
  background: linear-gradient(135deg, var(--garden-beige) 0%, #EDE8DC 100%);
  border: 1px solid rgba(196, 212, 176, 0.5);
}
.service-card:hover h3 {
  color: var(--garden-green);
}
.service-card:hover .service-num {
  color: var(--garden-green);
}
.service-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--garden-leaf);
  margin-bottom: 1rem;
  display: block;
  transition: color 300ms;
}
.service-card:hover .service-num {
  color: var(--garden-green);
}
.service-card h3 {
  margin-bottom: 0.75rem;
  transition: color 300ms;
}
.carousel-arrow {
  display: none;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--garden-beige);
  border: 1px solid var(--garden-gravel);
  color: var(--garden-pebble);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 300ms;
  box-shadow: var(--shadow-card);
  z-index: 5;
}
.carousel-arrow:hover {
  background: var(--garden-green);
  border-color: var(--garden-green);
  color: white;
  box-shadow: var(--shadow-button);
}
.carousel-arrow:active {
  transform: scale(0.93);
}

/* Why Design */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
.why-content { order: 2; }
.why-image { order: 1; }
.why-image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-float);
  object-fit: cover;
  aspect-ratio: 3/4;
}
.why-list { margin-bottom: 2.5rem; }
.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.5rem 0;
  font-size: 1rem;
  color: var(--garden-gray);
}
.why-check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--garden-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.why-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(20px, 2.5vw, 28px);
  color: var(--garden-pebble);
  line-height: 1.4;
  border-left: 3px solid var(--garden-green);
  padding-left: 1.5rem;
}

/* Audience */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.audience-card {
  background: var(--garden-beige);
  border-radius: var(--radius-sm);
  padding: 1.75rem 1rem;
  text-align: center;
  transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
}
.audience-card:hover {
  box-shadow: var(--shadow-card-hover), 0 12px 40px rgba(107,127,94,0.08);
  transform: translateY(-6px);
  background: linear-gradient(135deg, var(--garden-beige) 0%, #EDE8DC 100%);
}
.audience-card:hover .audience-title {
  color: var(--garden-green);
}
.audience-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--garden-leaf);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--garden-green);
}
.audience-title {
  font-weight: 500;
  font-size: 1rem;
  color: var(--garden-pebble);
  display: block;
  margin-bottom: 0.5rem;
}
.audience-desc {
  font-size: 0.875rem;
  color: var(--garden-gray);
  line-height: 1.5;
  display: block;
}

/* Before / After */
.beforeafter-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.beforeafter-img-wrap {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 40px rgba(107,127,94,0.15);
}
.before-img,
.after-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.beforeafter-label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 7px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.15);
  color: white;
  white-space: nowrap;
}
.after-label { background: var(--garden-green); }
.beforeafter-list { display: flex; flex-direction: column; gap: 0.75rem; }
.beforeafter-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 15px;
}
.before-list li { color: rgba(255,255,255,0.6); }
.before-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  flex-shrink: 0;
}
.after-list li { color: rgba(255,255,255,0.85); }
.after-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--garden-green);
  flex-shrink: 0;
}
.beforeafter-desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* Scenarios */
.scenarios-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.scenario-card {
  background: var(--garden-beige);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all 500ms cubic-bezier(0.4, 0, 0.2, 1);
}
.scenario-card:hover { box-shadow: var(--shadow-card-hover); }
.scenario-img {
  height: 200px;
  overflow: hidden;
}
.scenario-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1);
}
.scenario-card:hover .scenario-img img { transform: scale(1.05); }
.scenario-body { padding: 2rem; }
.scenario-body h3 { margin-bottom: 0.75rem; }

/* Process Timeline */
.timeline {
  position: relative;
  padding-left: 3rem;
}
.timeline-line {
  position: absolute;
  left: 19px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--garden-leaf);
}
.timeline-step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding-bottom: 2.5rem;
  position: relative;
}
.timeline-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--garden-green);
  color: white;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.timeline-text h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 1.125rem;
  color: var(--garden-pebble);
  margin-bottom: 0.5rem;
}
.timeline-text p {
  font-size: 15px;
  color: var(--garden-gray);
  line-height: 1.6;
}
.timeline-icon {
  margin-left: auto;
  padding-left: 1rem;
  color: var(--garden-green);
  opacity: 0.5;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  align-self: center;
}

/* Materials */
.materials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.material-card {
  background: var(--garden-beige);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  text-align: center;
  border: 1px solid transparent;
  transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
}
.material-card:hover {
  border-color: var(--garden-leaf);
  box-shadow: var(--shadow-card-hover);
}
.material-img-wrap {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 1rem;
}
.material-card img {
  aspect-ratio: 1;
  width: 100%;
  border-radius: var(--radius-sm);
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1);
}
.material-card:hover img { transform: scale(1.05); }
.material-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(61,56,50,0.78);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 400ms cubic-bezier(0.4, 0, 0.2, 1), visibility 400ms;
  border-radius: var(--radius-sm);
  pointer-events: none;
}
.material-card:hover .material-overlay {
  opacity: 1;
  visibility: visible;
}
.material-overlay p {
  color: white;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}
.material-name {
  font-weight: 500;
  font-size: 1rem;
  color: var(--garden-pebble);
}

/* Contact Form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
.contact-info p { margin-top: 1.5rem; margin-bottom: 2.5rem; }
.contact-details { display: flex; flex-direction: column; gap: 1rem; }
.contact-phone {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 1.125rem;
  color: var(--garden-pebble);
}
.contact-tg {
  font-size: 1rem;
  color: var(--garden-green);
}
.contact-hours {
  font-size: 0.875rem;
  color: var(--garden-gray);
}
.contact-form-wrap {
  background: var(--garden-beige);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: var(--garden-cream);
  border: 1px solid var(--garden-gravel);
  border-radius: 0.75rem;
  padding: 0.875rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--garden-pebble);
  margin-bottom: 1.25rem;
  outline: none;
  transition: border-color 200ms;
  resize: none;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(154,149,144,0.6);
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--garden-green);
}
.form-disclaimer {
  font-size: 13px;
  color: var(--garden-gray);
  text-align: center;
  margin-top: 1rem;
}
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 0;
  animation: scaleIn 400ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.form-success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--garden-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.form-success h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 1.125rem;
  color: var(--garden-pebble);
  margin-bottom: 0.5rem;
}
.form-success p {
  font-size: 1rem;
  color: var(--garden-gray);
  margin-bottom: 1.5rem;
}
.form-reset {
  font-size: 0.875rem;
  color: var(--garden-green);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 200ms;
}
.form-reset:hover { color: var(--garden-green-dark); }

/* Footer */
.footer {
  background: var(--garden-earth);
  padding: 4rem 0 2rem;
}
.footer-top {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: white;
  display: block;
}
.footer-sub {
  font-size: 0.875rem;
  color: var(--garden-gray);
  display: block;
  margin-top: 0.25rem;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-links a {
  font-size: 0.875rem;
  color: var(--garden-gray);
  transition: color 300ms;
}
.footer-links a:hover { color: white; }
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.footer-contact span {
  font-size: 0.875rem;
  color: var(--garden-leaf);
}
.footer-contact strong {
  font-weight: 500;
  font-size: 0.875rem;
  color: white;
}
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1.5rem;
}
.footer-bottom span:first-child {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.footer-bottom span:last-child {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

/* Animations */
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

/* Scroll reveal (animated by JS adding .revealed class) */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 600ms cubic-bezier(0.4, 0, 0.2, 1), transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Social Contacts Section */
.social-contacts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.social-contact-card {
  background: var(--garden-beige);
  border-radius: var(--radius-sm);
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1px solid transparent;
  transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
}
.social-contact-card:hover {
  border-color: var(--garden-leaf);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}
.social-contact-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--garden-green);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.social-contact-card .heading-h3 {
  font-size: clamp(20px, 2vw, 26px);
  margin-bottom: 0.5rem;
}
.social-contact-card .body-text {
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
}
.social-contact-card .btn-secondary {
  background: var(--garden-green);
  color: white;
  border-color: var(--garden-green);
}
.social-contact-card .btn-secondary:hover {
  background: var(--garden-green-dark);
  border-color: var(--garden-green-dark);
}

/* Tablet (768px+) */
@media (min-width: 768px) {
  .section { padding: 7rem 0; }
  .hero-content { padding: 160px 3rem 25vh; }
  .hero-title { font-size: clamp(56px, 6vw, 80px); }
  .hero-buttons { flex-direction: row; }
  .service-card { flex: 0 0 calc(50% - 0.75rem); min-width: 300px; }
  .carousel-arrow { display: flex; }
  .audience-grid { grid-template-columns: repeat(4, 1fr); }
  .scenarios-grid { grid-template-columns: repeat(3, 1fr); }
  .materials-grid { grid-template-columns: repeat(4, 1fr); }
  .beforeafter-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
  .social-contacts-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
  .section { padding: 120px 0; }
  .container { padding: 0 3rem; }
  .nav-inner { padding: 0 3rem; }
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex !important; }
  .nav-social { display: flex; }
  .nav-hamburger { display: none; }
  .hero-content { padding: 160px 3rem 25vh; }
  .why-grid { grid-template-columns: 55% 45%; }
  .why-content { order: 1; }
  .why-image { order: 2; }
  .contact-grid { grid-template-columns: 45% 55%; }
  .service-card { flex: 0 0 calc(33.333% - 1rem); min-width: 340px; }
  .footer-top { flex-direction: row; justify-content: space-between; align-items: flex-start; }
  .social-contacts-grid { grid-template-columns: repeat(3, 1fr); }
}
