/* ============================================
   CSS VARIABLES & BASE STYLES
   ============================================ */

:root {
  color-scheme: light;
  --bg: #f6f1ea;
  --panel: #ffffff;
  --text: #2e2216;
  --muted: #6d5a48;
  --primary: #8b5e34;
  --primary-dark: #6f4e37;
  --accent: #c08445;
  --border: #eadfce;
  --shadow: 0 20px 45px rgba(62, 44, 29, 0.18);
  --radius: 18px;
  --max-width: 1160px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
}

.container {
  width: min(100% - 2.5rem, var(--max-width));
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================
   ANIMATIONS & UTILITIES
   ============================================ */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse-glow {
  0%, 100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}


.animate-on-scroll {
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}

.animate-on-scroll.fade-in {
  animation: fadeIn 0.8s ease-out forwards;
}

.animate-on-scroll.scale-in {
  animation: scaleIn 0.6s ease-out forwards;
}

/* Stagger delays for grid items */
.why-item:nth-child(1) { animation-delay: 0.1s; }
.why-item:nth-child(2) { animation-delay: 0.2s; }
.why-item:nth-child(3) { animation-delay: 0.3s; }
.why-item:nth-child(4) { animation-delay: 0.4s; }

.client-type:nth-child(1) { animation-delay: 0.1s; }
.client-type:nth-child(2) { animation-delay: 0.2s; }
.client-type:nth-child(3) { animation-delay: 0.3s; }

.process-list li:nth-child(1) { animation-delay: 0.1s; }
.process-list li:nth-child(2) { animation-delay: 0.2s; }
.process-list li:nth-child(3) { animation-delay: 0.3s; }
.process-list li:nth-child(4) { animation-delay: 0.4s; }

.stat-item:nth-child(1) { animation-delay: 0.1s; }
.stat-item:nth-child(2) { animation-delay: 0.2s; }
.stat-item:nth-child(3) { animation-delay: 0.3s; }
.stat-item:nth-child(4) { animation-delay: 0.4s; }

/* ============================================
   COMMON COMPONENTS - HEADER & NAVIGATION
   ============================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(246, 241, 234, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

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

.logo {
  display: block;
}

.logo img {
  width: 240px;
  height: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.95rem;
}

.nav-links a.active {
  color: var(--primary);
  font-weight: 600;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: var(--text);
}

/* ============================================
   COMMON COMPONENTS - BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: #5a3c22;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(139, 94, 52, 0.3);
}

.btn-active {
  background: #5a3c22;
  cursor: default;
}

.btn-active:hover {
  background: #5a3c22;
  transform: none;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.05rem;
}

.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* ============================================
   COMMON COMPONENTS - SECTION HEADERS
   ============================================ */

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

.section-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(139, 94, 52, 0.1);
  color: var(--primary);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* ============================================
   COMMON COMPONENTS - FOOTER
   ============================================ */

.site-footer {
  background: #0b1220;
  color: #dce4f5;
  padding: 3rem 0 2rem;
}

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

.footer-main h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.footer-main p {
  margin-bottom: 1.5rem;
  color: #b8c5d8;
  line-height: 1.7;
}

.footer-contact {
  display: grid;
  gap: 0.75rem;
}

.footer-contact a {
  color: #9fb2d3;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact a:hover {
  color: #fff;
}

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

.footer-nav h4 {
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
}

.footer-nav a {
  color: #9fb2d3;
  text-decoration: none;
}

.footer-nav a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: #9fb2d3;
  font-size: 0.9rem;
}

/* ============================================
   HOMEPAGE (index.html)
   ============================================ */

/* Hero/Intro Section */
.intro-section {
  padding: 4rem 0 3.5rem;
  background: linear-gradient(135deg, #f3e6d4, #f6f1ea);
  position: relative;
  overflow: hidden;
}

.intro-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(139, 94, 52, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse-glow 4s ease-in-out infinite;
}

.intro-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(192, 132, 69, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse-glow 5s ease-in-out infinite 1s;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.intro-content {
  text-align: left;
  animation: fadeInUp 0.8s ease-out;
}

.intro-image-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 0;
}

.intro-image {
  position: relative;
  opacity: 0;
  width: 100%;
  max-width: 550px;
}

.intro-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px 24px 0 0;
  box-shadow: 
    0 35px 90px rgba(62, 44, 29, 0.35),
    0 10px 30px rgba(0, 0, 0, 0.1);
  object-fit: contain;
  background: transparent;
  position: relative;
  z-index: 2;
}

.intro-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: var(--primary);
  color: #fff;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.intro-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  color: var(--text);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.intro-lead {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.intro-cta {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Product Banner */
.product-banner {
  width: 100%;
  max-width: 550px;
  background: linear-gradient(180deg, #8b1a2e 0%, #a01e35 50%, #8b1a2e 100%);
  border-radius: 0 0 16px 16px;
  padding: 1rem 1.5rem;
  text-align: center;
  box-shadow: 
    0 10px 30px rgba(139, 26, 46, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  animation: fadeInUp 0.8s ease-out 0.3s forwards;
  opacity: 0;
  margin-top: -16px;
  position: relative;
  z-index: 1;
}

.product-banner-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

.product-banner-title {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  line-height: 1.2;
}

.product-banner-weight {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  max-width: 200px;
}

.weight-line {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
}

.weight-text {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  white-space: nowrap;
}

.product-banner-cta {
  display: inline-block;
  background: linear-gradient(180deg, #ffd700 0%, #ffc107 100%);
  color: #2e2216;
  padding: 0.5rem 1.75rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  box-shadow: 
    0 4px 12px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  margin-top: 0.125rem;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  line-height: 1.2;
}

.product-banner-cta:hover {
  background: #ffed4e;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

/* Stats Section */
.stats-section {
  padding: 2.5rem 0;
  background: var(--panel);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  opacity: 0;
}

.stat-item.animate-on-scroll {
  animation: fadeInUp 0.6s ease-out forwards;
}

.stat-number {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.5rem;
  transition: transform 0.3s ease;
}

.stat-item:hover .stat-number {
  transform: scale(1.1);
}

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

/* Why Section */
.why-section {
  padding: 3.5rem 0;
}

.why-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1200px;
  margin: 0 auto;
}

.why-item {
  background: var(--panel);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 8px rgba(62, 44, 29, 0.05);
  opacity: 0;
}

.why-item.animate-on-scroll {
  animation: fadeInUp 0.6s ease-out forwards;
}

.why-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(62, 44, 29, 0.12);
}

.why-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(139, 94, 52, 0.1), rgba(192, 132, 69, 0.1));
  border-radius: 16px;
  color: var(--primary);
  flex-shrink: 0;
}

.why-icon svg {
  width: 32px;
  height: 32px;
  stroke-width: 2;
}

.why-item h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  color: var(--primary-dark);
  font-weight: 600;
}

/* Clients Section */
.clients-section {
  padding: 3.5rem 0;
}

.clients-list {
  display: grid;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.client-type {
  background: var(--panel);
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 8px rgba(62, 44, 29, 0.05);
  opacity: 0;
}

.client-type.animate-on-scroll {
  animation: fadeInUp 0.6s ease-out forwards;
}

.client-type:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(62, 44, 29, 0.12);
}

.client-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(139, 94, 52, 0.1), rgba(192, 132, 69, 0.1));
  border-radius: 12px;
  color: var(--primary);
  flex-shrink: 0;
}

.client-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 2;
}

.client-type strong {
  display: block;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--primary-dark);
  font-weight: 600;
}

.client-type p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--muted);
  margin: 0;
}

/* Process Section */
.process-section {
  padding: 2.5rem 0;
}

.process-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.process-list li {
  display: flex;
  gap: 1rem;
  align-items: center;
  background: var(--panel);
  padding: 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 8px rgba(62, 44, 29, 0.05);
  opacity: 0;
  min-height: 100px;
}

.process-list li.animate-on-scroll {
  animation: fadeInUp 0.6s ease-out forwards;
}

.process-list li:hover {
  transform: translateX(4px);
  box-shadow: 0 8px 24px rgba(62, 44, 29, 0.12);
}

.process-number {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.process-content {
  flex: 1;
}

.process-content strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.375rem;
  color: var(--primary-dark);
  font-weight: 600;
  line-height: 1.3;
}

.process-content p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

/* CTA Section */
.cta-section {
  padding: 3.5rem 0;
  background: linear-gradient(135deg, #8b5e34, #c08445);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  margin-bottom: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-section .btn {
  background: #fff;
  color: var(--primary-dark);
}

.cta-section .btn:hover {
  background: #f6f1ea;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* ============================================
   ABOUT PAGE (about.html)
   ============================================ */

.page-intro {
  padding: 4rem 0 3rem;
  background: linear-gradient(135deg, #f3e6d4, #f6f1ea);
  text-align: center;
}

.page-intro h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1rem;
}

.page-lead {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto;
}

.story-section {
  padding: 4rem 0;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.story-content {
  max-width: none;
}

.story-content h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 1.5rem;
}

.story-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.story-image {
  opacity: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-image img {
  width: 100%;
  height: auto;
  max-width: 550px;
  border-radius: 0;
  box-shadow: none;
  object-fit: contain;
  background: transparent;
}

.values-section {
  padding: 4rem 0;
  background: #efe4d3;
}

.values-section h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  text-align: center;
  margin-bottom: 3rem;
}

.values-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1200px;
  margin: 0 auto;
}

.value-item {
  background: var(--panel);
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.value-item h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--primary-dark);
  font-weight: 600;
}

.value-item p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--muted);
  margin: 0;
}

/* ============================================
   SERVICES PAGE (services.html)
   ============================================ */

.products-section {
  padding: 4rem 0;
}

.product-category {
  margin-bottom: 4rem;
}

.product-category h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 2rem;
  color: var(--primary-dark);
}

.product-list {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.product-item {
  background: var(--panel);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.product-item h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: var(--primary-dark);
}

.brands-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: var(--muted);
}

.brands-cta {
  text-align: center;
  padding: 2rem;
  background: var(--panel);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.brands-cta p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

/* Product Showcase Section */
.product-showcase-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f6f1ea, #ffffff);
}

.showcase-description {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 1rem;
}

.product-showcase {
  max-width: 1200px;
  margin: 0 auto;
}

.product-images-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.product-image-single {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 700px;
  margin: 0 auto;
}

.product-image-item {
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  min-height: 300px;
}

.product-image-item img {
  width: 100%;
  height: auto;
  max-width: 600px;
  max-height: 600px;
  object-fit: contain;
  display: block;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

/* ============================================
   CONTACT PAGE (contact.html)
   ============================================ */

.contact-section {
  padding: 4rem 0;
}

.contact-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
}

.contact-details {
  margin-top: 2rem;
  display: grid;
  gap: 1.5rem;
}

.contact-detail strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.contact-detail a {
  color: var(--primary);
  text-decoration: underline;
}

.contact-form {
  background: var(--panel);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--border);
  display: grid;
  gap: 1rem;
}

.contact-form h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 1.5rem;
}

.contact-form label {
  display: grid;
  gap: 0.5rem;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  border-radius: 10px;
  border: 1px solid var(--border);
  padding: 0.75rem;
  font: inherit;
}

.form-note {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 1rem;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

@media (max-width: 768px) {
  .container {
    width: min(100% - 2rem, var(--max-width));
  }

  .intro-section {
    padding: 2.5rem 0 2rem;
  }

  .intro-badge {
    font-size: 0.75rem;
    padding: 0.4rem 1rem;
    margin-bottom: 1.25rem;
  }

  .intro-content h1 {
    font-size: clamp(1.75rem, 8vw, 2.25rem);
    margin-bottom: 1rem;
    line-height: 1.2;
  }

  .intro-lead {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }

  .intro-cta {
    margin-top: 1.5rem;
    gap: 0.75rem;
  }

  .why-section,
  .clients-section,
  .process-section {
    padding: 2.5rem 0;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .section-header h2 {
    font-size: clamp(1.75rem, 6vw, 2rem);
  }

  .section-badge {
    font-size: 0.7rem;
    padding: 0.35rem 0.85rem;
  }

  .why-item,
  .client-type,
  .value-item {
    padding: 1.5rem;
  }

  .why-item h3,
  .client-type strong {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
  }

  .why-item p,
  .client-type p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .why-icon,
  .client-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
  }

  .why-icon svg {
    width: 28px;
    height: 28px;
  }

  .client-icon svg {
    width: 22px;
    height: 22px;
  }

  .clients-list {
    gap: 1.25rem;
  }

  .process-list {
    gap: 1.5rem;
  }

  .process-list li {
    padding: 1.5rem;
    gap: 1.25rem;
  }

  .process-number {
    width: 3rem;
    height: 3rem;
    font-size: 1.25rem;
  }

  .process-content strong {
    font-size: 1.15rem;
  }

  .cta-section {
    padding: 2.5rem 0;
  }

  .cta-section h2 {
    font-size: clamp(1.75rem, 6vw, 2.25rem);
    margin-bottom: 1rem;
  }

  .cta-section p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .stats-section {
    padding: 2rem 0;
  }

  .stats-grid {
    gap: 1.5rem;
  }

  .stat-number {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }

  .stat-label {
    font-size: 0.85rem;
  }

  .page-intro {
    padding: 2.5rem 0 2rem;
  }

  .page-intro h1 {
    font-size: clamp(1.75rem, 8vw, 2.25rem);
  }

  .page-lead {
    font-size: 1rem;
  }

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

  .contact-form {
    padding: 1.5rem;
  }
}

@media (max-width: 900px) {
  .site-header {
    padding: 0;
  }

  .nav {
    padding: 0.75rem 0;
  }

  .logo {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
  }

  .logo img {
    width: 180px;
  }

  .nav-links {
    position: fixed;
    top: 60px;
    left: 1rem;
    right: 1rem;
    flex-direction: column;
    background: var(--panel);
    border-radius: 12px;
    padding: 1.25rem;
    border: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(62, 44, 29, 0.15);
    transform: translateY(-150%);
    transition: transform 0.3s ease;
    z-index: 100;
    gap: 0.75rem;
  }

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

  .nav-links a {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    display: block;
    text-align: left;
  }

  .nav-links a.btn {
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
  }

  .nav-toggle {
    display: inline-block;
    padding: 0.5rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: 1.5rem;
  }

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

  .process-list li {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .process-number {
    width: 3rem;
    height: 3rem;
    font-size: 1.25rem;
    margin: 0 auto 1rem;
  }

  .intro-cta,
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

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

  .intro-image {
    order: -1;
  }

  .intro-image {
    margin-top: 2rem;
  }

  .intro-image img {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
  }

  .product-showcase-section {
    padding: 3rem 0;
  }

  .product-images-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .intro-cta {
    justify-content: center;
  }

  .intro-cta .btn,
  .cta-buttons .btn {
    width: 100%;
    padding: 0.875rem 1.5rem;
  }

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

  .why-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

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

  .clients-list {
    gap: 1.25rem;
  }

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

  .story-image {
    order: -1;
  }

  .story-image img {
    max-height: 400px;
    object-fit: contain;
  }

  .product-banner {
    padding: 1.5rem 1.75rem;
    max-width: 100%;
  }

  .product-banner-title {
    font-size: 1.25rem;
  }

  .product-banner-cta {
    padding: 0.75rem 2rem;
    font-size: 0.9rem;
    width: 100%;
  }
}

@media (max-width: 1200px) and (min-width: 901px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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