/* ═══════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding-block: var(--space-2);
  z-index: var(--z-nav);
  background: var(--cream);
  transition: background var(--duration-base) var(--ease-smooth),
              box-shadow var(--duration-base) var(--ease-smooth);
}

.site-header.is-scrolled {
  background: var(--cream);
  box-shadow: var(--shadow-sm);
}

.navbar {
  max-width: var(--max-container);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  padding-inline: var(--space-6);
}

.logo {
  flex-shrink: 0;
}

.logo img {
  height: 55px;
  width: auto;
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--space-2);
}

.nav-links a {
  display: inline-block;
  color: var(--dark);
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-pill);
  transition: all var(--duration-fast) var(--ease-smooth);
  font-weight: 600;
  font-size: 0.9rem;
  background: transparent;
}

.nav-links a:hover,
.nav-links a.is-active {
  background: var(--yellow);
  color: var(--text-primary);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(192, 150, 66, 0.25);
}

.nav-toggle {
  display: none;
  background: var(--cream);
  color: var(--dark);
  border: 2px solid var(--yellow);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--duration-base) var(--ease-smooth);
}

.nav-icon-close {
  display: none;
}

.nav-toggle:hover {
  background: var(--yellow);
  color: var(--text-primary);
}

/* Mobile nav state */
.nav-open .nav-links {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: var(--space-4);
  right: var(--space-4);
  background: var(--white);
  border: 2px solid var(--yellow);
  border-radius: var(--radius-md);
  margin-top: var(--space-2);
  box-shadow: var(--shadow-lg);
  padding: var(--space-4) 0;
  gap: 0;
  z-index: var(--z-nav);
}

.nav-open .nav-links li {
  border-bottom: 1px solid var(--bg-page);
}

.nav-open .nav-links li:last-child {
  border-bottom: none;
}

.nav-open .nav-links a {
  display: block;
  padding: var(--space-3) var(--space-5);
  border-radius: 0;
  background: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
}

.nav-open .nav-links a:hover,
.nav-open .nav-links a.is-active {
  background: var(--yellow);
  transform: none;
  box-shadow: none;
  padding-left: var(--space-6);
}

/* ═══════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all var(--duration-base) var(--ease-smooth);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--yellow);
  color: var(--text-primary);
  box-shadow: 0 4px 15px rgba(249, 200, 14, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249, 200, 14, 0.4);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: translateX(-100%) skewX(-15deg);
  transition: none;
}

.btn-primary:hover::after {
  animation: shineSweep 0.6s ease forwards;
}

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

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

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

.btn-green:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

.btn-icon {
  width: 20px;
  height: 20px;
}

/* ═══════════════════════════════════════════════════════
   BADGES / TAGS
   ═══════════════════════════════════════════════════════ */
.badge {
  display: inline-block;
  padding: 6px 18px;
  border-radius: var(--radius-badge);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

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

.badge-yellow {
  background: var(--yellow);
  color: var(--text-primary);
}

.feature-tag {
  display: inline-block;
  background: var(--grey-1);
  color: var(--text-primary);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 500;
}

.feature-tag-highlight {
  background: var(--green);
  color: var(--white);
}

/* ═══════════════════════════════════════════════════════
   PRODUCT ROWS — alternating layout
   ═══════════════════════════════════════════════════════ */
.product-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-9);
  align-items: center;
  padding: var(--space-7) 0;
  border-top: 1px solid transparent;
  position: relative;
}

.product-row:first-child {
  border-top: none;
}

.product-row.is-reversed {
  direction: rtl;
}

.product-row.is-reversed > * {
  direction: ltr;
}

.product-row-image {
  position: relative;
}

.product-row-image-wrap {
  position: relative;
  height: 560px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  z-index: var(--z-base);
}

.product-row-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-smooth);
}

.product-row-image-wrap:hover img {
  transform: scale(1.05);
}

.product-tag {
  position: absolute;
  top: var(--space-5);
  left: var(--space-5);
  background: rgba(57, 108, 61, 0.85);
  color: var(--yellow);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 12px;
  border-radius: 3px;
  z-index: var(--z-base);
}

.product-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
}

.product-row-body {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.product-row-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.1;
  letter-spacing: -1px;
  margin: 0;
}

.product-row-description {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

.product-feature-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border-light);
  padding: 0;
  margin: 0;
}

.product-feature-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--border-light);
}

.product-feature-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-feature-check svg {
  width: 9px;
  height: 9px;
}

.product-feature-text {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-primary);
}

.product-row-cta {
  display: flex;
  align-items: center;
  gap: var(--space-5);
}

.btn-forest {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--green);
  color: var(--bg-page);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 13px 22px;
  border-radius: 3px;
  text-decoration: none;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background var(--duration-base) var(--ease-smooth);
}

.product-cta-link {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 2px;
  transition: color var(--duration-base) var(--ease-smooth),
              border-color var(--duration-base) var(--ease-smooth);
}

.product-cta-link:hover {
  color: var(--green);
  border-color: var(--green);
}

/* ═══════════════════════════════════════════════════════
   PRODUCT CAROUSEL
   ═══════════════════════════════════════════════════════ */
.product-carousel {
  position: relative;
}

.product-carousel-track {
  display: flex;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  height: 560px;
}

.product-carousel-slide {
  min-width: 100%;
  height: 100%;
  transition: transform var(--duration-slow) var(--ease-smooth);
}

.product-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: var(--z-base);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: background var(--duration-fast) var(--ease-smooth),
              transform var(--duration-fast) var(--ease-smooth);
}

.product-carousel-arrow:hover {
  background: var(--white);
  transform: translateY(-50%) scale(1.1);
}

.product-carousel-prev {
  left: var(--space-4);
}

.product-carousel-next {
  right: var(--space-4);
}

.product-carousel-arrow svg {
  width: 18px;
  height: 18px;
  stroke: var(--dark);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-carousel-dots {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
  margin-top: var(--space-4);
}

.product-carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid var(--green);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background var(--duration-fast) var(--ease-smooth);
}

.product-carousel-dot.is-active {
  background: var(--green);
}

.product-carousel-dot:hover {
  background: var(--green-dark);
}

/* ═══════════════════════════════════════════════════════
   SECTION BACKGROUND — reusable fixed image + overlay
   ═══════════════════════════════════════════════════════ */
.section-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  overflow: hidden;
}

.section-bg-image {
  width: 100%;
  height: 100%;
  background-image: url('../assets/Backgroundv1.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.section-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(245, 243, 232, 0.92);
}

/* ═══════════════════════════════════════════════════════
   PROJECTS DONE — alternating rows with data panels
   ═══════════════════════════════════════════════════════ */
.project-tag {
  display: inline-flex;
  background: var(--green-dark);
  color: var(--yellow);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: var(--space-2) var(--space-4);
  border-radius: 3px;
  margin-bottom: var(--space-3);
}

.project-row-title {
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.2;
  margin-bottom: var(--space-3);
}

.project-row-desc {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.project-panel {
  background: var(--green-dark);
  border-radius: var(--radius-sm);
  padding: var(--space-5) var(--space-5);
}

.project-panel-title {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(244, 241, 230, 0.5);
  margin-bottom: var(--space-4);
}

.project-panel-line {
  display: flex;
  justify-content: space-between;
  padding: var(--space-2) 0;
  border-bottom: 1px solid rgba(244, 241, 230, 0.1);
}

.project-panel-line:last-child {
  border-bottom: none;
}

.project-panel-key {
  font-size: 0.84rem;
  color: rgba(244, 241, 230, 0.65);
}

.project-panel-value {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--cream);
  text-align: right;
}

/* ═══════════════════════════════════════════════════════
   TESTIMONIAL CAROUSEL
   ═══════════════════════════════════════════════════════ */
.testimonial-carousel {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.testimonial-slide {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-6) var(--space-5);
}

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

.testimonial-quote-mark {
  font-size: 3rem;
  font-weight: 700;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: var(--space-3);
}

.testimonial-quote {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text-primary);
  margin-bottom: var(--space-5);
  max-width: 560px;
}

.testimonial-attrib {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding-top: var(--space-4);
  border-top: 1px solid var(--border-light);
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(15,75,40,0.08);
  border: 1px dashed rgba(15,75,40,0.25);
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--green-dark);
  text-align: left;
}

.testimonial-role {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: left;
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-4);
  margin-top: var(--space-5);
}

.testimonial-dots {
  display: flex;
  gap: var(--space-2);
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--border-light);
  cursor: pointer;
  padding: 0;
  transition: background var(--duration-base) var(--ease-smooth);
}

.testimonial-dot.is-active {
  background: var(--green);
}

.testimonial-dot:hover {
  background: var(--green);
}

.testimonial-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  background: var(--white);
  cursor: pointer;
  padding: 0;
  color: var(--green-dark);
  transition: all var(--duration-base) var(--ease-smooth);
}

.testimonial-arrow:hover {
  background: var(--green-dark);
  color: var(--white);
  border-color: var(--green-dark);
}

/* ═══════════════════════════════════════════════════════
   PROJECT IMAGE SLOT
   ═══════════════════════════════════════════════════════ */
.project-image {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.project-image-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ═══════════════════════════════════════════════════════
   CARDS — PROCESS (stacked steps with left accent)
   ═══════════════════════════════════════════════════════ */
.process-step {
  padding: var(--space-5) 0 var(--space-5) var(--space-5);
  border-bottom: 1px solid var(--border-light);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--duration-slow) var(--ease-smooth),
              transform var(--duration-slow) var(--ease-smooth);
}

.process-step.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.process-step:last-child {
  border-bottom: none;
}

.process-step:nth-child(odd) {
  border-left: 2px solid var(--green);
  border-radius: 0;
}

.process-step:nth-child(even) {
  border-left: 2px solid var(--yellow);
  border-radius: 0;
}

.process-step-header {
  display: flex;
  align-items: baseline;
  gap: var(--space-3);
  margin-bottom: var(--space-2);
}

.process-step-number {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.05em;
}

.process-step:nth-child(even) .process-step-number {
  color: var(--yellow-dark);
}

.process-card-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.process-card-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
  padding-left: calc(0.75rem + var(--space-3));
}

/* ═══════════════════════════════════════════════════════
   STATS
   ═══════════════════════════════════════════════════════ */
.stat-item {
  text-align: center;
}

.stat-number {
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  margin-bottom: var(--space-1);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Dark background stat variant */
.stats-dark .stat-number {
  color: var(--yellow);
  font-size: clamp(2rem, 4vw, 3rem);
}

.stats-dark .stat-label {
  color: var(--text-footer);
}

/* ═══════════════════════════════════════════════════════
   CONTACT SIDEBAR
   ═══════════════════════════════════════════════════════ */
.contact-sidebar {
  background: var(--green-dark);
  color: var(--bg-page);
  padding: var(--space-7) var(--space-6);
  display: flex;
  flex-direction: column;
}

.contact-sidebar-section {
  padding-bottom: var(--space-5);
  margin-bottom: var(--space-5);
  border-bottom: 1px solid rgba(244, 241, 230, 0.13);
}

.contact-sidebar-section:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-sidebar-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: var(--space-4);
}

.contact-sidebar-title svg {
  width: 14px;
  height: 14px;
}

.contact-sidebar-body {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(244, 241, 230, 0.7);
}

.contact-sidebar-body strong {
  display: block;
  color: var(--bg-page);
  font-weight: 600;
  margin-bottom: var(--space-1);
}

.contact-info-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  padding: 7px 0;
}

.contact-info-line .k {
  color: rgba(244, 241, 230, 0.55);
}

.contact-info-line .v {
  color: var(--bg-page);
  font-weight: 500;
}

.contact-info-line .v a {
  color: var(--bg-page);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-smooth);
}

.contact-info-line .v a:hover {
  color: var(--yellow);
}

.contact-hours-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  padding: 6px 0;
}

.contact-hours-line .day {
  color: rgba(244, 241, 230, 0.7);
}

.contact-hours-line .time {
  color: var(--bg-page);
}

.contact-hours-line .time.is-closed {
  color: var(--terracotta, #B5562E);
}

.contact-sidebar-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}

.contact-alt-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(244, 241, 230, 0.13);
  color: var(--bg-page);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: border-color var(--duration-fast) var(--ease-smooth);
}

.contact-alt-btn:hover {
  border-color: rgba(244, 241, 230, 0.35);
}

.contact-alt-btn svg {
  width: 15px;
  height: 15px;
  color: var(--yellow);
}

/* ═══════════════════════════════════════════════════════
   CONTACT FORM PANEL
   ═══════════════════════════════════════════════════════ */
.contact-form-panel {
  background: var(--white);
  padding: var(--space-8) var(--space-7);
}

.contact-form-panel h2 {
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--green-dark);
  margin-bottom: var(--space-2);
}

.contact-form-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: var(--space-6);
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
  margin-bottom: var(--space-5);
}

.contact-field {
  display: flex;
  flex-direction: column;
}

.contact-field-full {
  margin-bottom: var(--space-5);
}

.contact-field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 7px;
}

.contact-field label .req {
  color: var(--terracotta, #B5562E);
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 11px 13px;
  font-size: 0.85rem;
  font-family: var(--font-sans);
  color: var(--text-primary);
  background: var(--bg-page);
  transition: border-color var(--duration-fast) var(--ease-smooth);
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  outline: none;
  border-color: var(--green);
}

.contact-field textarea {
  resize: vertical;
  min-height: 90px;
}

.contact-checkbox-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
  display: block;
}

.contact-checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: var(--space-5);
}

.contact-checkbox-item {
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 11px 13px;
  font-size: 0.8rem;
  color: var(--text-primary);
  cursor: pointer;
  transition: border-color var(--duration-fast) var(--ease-smooth);
}

.contact-checkbox-item:hover {
  border-color: var(--green);
}

.contact-checkbox-item input {
  width: 16px;
  height: 16px;
  accent-color: var(--green);
}

.contact-submit-btn {
  width: 100%;
  background: var(--yellow);
  color: var(--green-dark);
  border: none;
  border-radius: var(--radius-sm);
  padding: 16px;
  font-size: 0.9rem;
  font-weight: 700;
  font-family: var(--font-sans);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  transition: background var(--duration-base) var(--ease-smooth);
}

.contact-submit-btn:hover {
  background: var(--yellow-dark);
}

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
.site-footer {
  background: var(--bg-dark);
  color: var(--white);
}

.footer-main {
  padding: var(--space-9) 0 var(--space-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1.1fr;
  gap: var(--space-8);
}

.footer-brand {
  max-width: 350px;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-2);
}

.footer-logo-row img {
  height: 36px;
  width: auto;
}

.footer-brand-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
}

.footer-brand-tagline {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--yellow);
  margin-bottom: var(--space-5);
  display: block;
}

.footer-description {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--text-footer);
  max-width: 320px;
  margin-bottom: var(--space-6);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-footer);
}

.footer-contact-item svg {
  width: 15px;
  height: 15px;
  color: var(--yellow);
  flex-shrink: 0;
}

.footer-contact-item a {
  color: var(--text-footer);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-smooth);
}

.footer-contact-item a:hover {
  color: var(--yellow);
}

.footer-social-row {
  display: flex;
  gap: 10px;
}

.footer-social-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(244, 241, 230, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-footer);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-smooth), border-color var(--duration-fast) var(--ease-smooth);
}

.footer-social-icon:hover {
  color: var(--yellow);
  border-color: var(--yellow);
}

.footer-social-icon svg {
  width: 14px;
  height: 14px;
}

.footer-col-title {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: var(--space-5);
  display: block;
}

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

.footer-col-links a {
  font-size: 0.875rem;
  color: var(--text-footer);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-smooth);
}

.footer-col-links a:hover {
  color: var(--yellow);
}

.footer-newsletter-text {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-footer);
  margin-bottom: var(--space-5);
}

.footer-newsletter-form {
  display: flex;
  border: 1px solid rgba(244, 241, 230, 0.18);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.footer-newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 13px 14px;
  font-size: 0.8rem;
  color: var(--white);
  font-family: var(--font-sans);
}

.footer-newsletter-form input::placeholder {
  color: rgba(244, 241, 230, 0.4);
}

.footer-newsletter-form input:focus {
  outline: none;
}

.footer-newsletter-form button {
  background: var(--yellow);
  border: none;
  color: var(--green-dark);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0 20px;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: background var(--duration-fast) var(--ease-smooth);
}

.footer-newsletter-form button:hover {
  background: var(--yellow-dark);
}

.footer-bottom {
  border-top: 1px solid rgba(244, 241, 230, 0.1);
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
  padding: var(--space-5) 0;
}

.footer-copyright {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(244, 241, 230, 0.4);
}

.footer-bottom-links {
  display: flex;
  gap: var(--space-6);
}

.footer-bottom-links a {
  font-size: 0.78rem;
  color: rgba(244, 241, 230, 0.5);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-smooth);
}

.footer-bottom-links a:hover {
  color: var(--yellow);
}

/* ═══════════════════════════════════════════════════════
   CTA PANEL
   ═══════════════════════════════════════════════════════ */
.cta-panel {
  background: var(--green-dark);
  border-radius: var(--radius-sm);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  overflow: hidden;
}

.cta-panel-main {
  padding: var(--space-9) var(--space-8);
}

.cta-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: var(--space-4);
  display: flex;
  align-items: center;
  gap: 10px;
}

.cta-eyebrow::before {
  content: "";
  width: 22px;
  height: 1.5px;
  background: var(--yellow);
}

.cta-panel-title {
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  line-height: 1.2;
  color: var(--bg-page);
  letter-spacing: -0.01em;
  margin-bottom: var(--space-4);
  max-width: 460px;
}

.cta-panel-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(244, 241, 230, 0.65);
  max-width: 420px;
  margin-bottom: var(--space-7);
}

.cta-panel-side {
  background: rgba(244, 241, 230, 0.04);
  border-left: 1px solid rgba(244, 241, 230, 0.14);
  padding: var(--space-8) var(--space-7);
  display: flex;
  flex-direction: column;
}

.cta-side-title {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(244, 241, 230, 0.45);
  margin-bottom: var(--space-6);
}

.cta-step {
  display: flex;
  gap: var(--space-4);
  padding-bottom: var(--space-5);
  margin-bottom: var(--space-5);
  border-bottom: 1px solid rgba(244, 241, 230, 0.14);
}

.cta-step:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.cta-step-num {
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--yellow);
  flex-shrink: 0;
}

.cta-step-text {
  font-size: 0.85rem;
  line-height: 1.55;
  color: rgba(244, 241, 230, 0.78);
  margin: 0;
}

/* ═══════════════════════════════════════════════════════
   SKIP TO CONTENT
   ═══════════════════════════════════════════════════════ */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-4);
  background: var(--yellow);
  color: var(--text-primary);
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-sm);
  font-weight: 600;
  z-index: var(--z-modal);
  transition: top var(--duration-fast) var(--ease-smooth);
}

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