/* ============ GLOBAL STYLES ============ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  overflow-x: hidden;
}

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

ul,
ol {
  list-style: none;
}

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

/* ============ CONTAINER & SPACING ============ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px;
}

section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 48px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.section-header p {
  font-size: 18px;
  color: #666;
}

/* ============ HEADER & NAVIGATION ============ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar {
  padding: 20px 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-section {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo {
  font-size: 28px;
  font-weight: 800;
  color: #2c2c2c;
  letter-spacing: 2px;
}

.tagline {
  font-size: 11px;
  color: #999;
  letter-spacing: 1px;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav-link {
  color: #333;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -8px;
  left: 0;
  background-color: #8b7355;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.cta-button {
  background-color: #8b7355;
  color: white;
  padding: 12px 25px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: #6d5841;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(139, 115, 85, 0.3);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #333;
  border-radius: 3px;
  transition: 0.3s;
}

/* ============ HERO SECTION ============ */
.hero {
  margin-top: 70px;
  background-image:
    linear-gradient(
      104deg,
      rgba(14, 10, 7, 0.78) 0%,
      rgba(14, 10, 7, 0.58) 48%,
      rgba(14, 10, 7, 0.34) 100%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.42) 100%),
    url("https://images.unsplash.com/photo-1567521464027-f127ff144326?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  display: flex;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px;
}

.hero-text {
  animation: fadeInLeft 0.8s ease-out;
}

body.gsap-enhanced .hero-text {
  animation: none;
}

.hero-text-card {
  max-width: 760px;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff6ea;
  background-color: rgba(12, 9, 7, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 8px 14px;
  margin-bottom: 18px;
}

.hero-title {
  font-size: 56px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.52);
}

.hero-subtitle {
  font-size: 18px;
  color: #f3e9dc;
  margin-bottom: 24px;
  line-height: 1.8;
  max-width: 660px;
  text-shadow: 0 7px 18px rgba(0, 0, 0, 0.44);
}

.hero-highlights {
  display: grid;
  gap: 10px;
  margin-bottom: 30px;
}

.hero-highlights li {
  font-size: 15px;
  color: #fff3e4;
  line-height: 1.6;
  padding-left: 22px;
  position: relative;
  text-shadow: 0 6px 14px rgba(0, 0, 0, 0.42);
}

.hero-highlights li::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #f0c18e;
  position: absolute;
  left: 0;
  top: 8px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 26px;
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 620px;
}

.trust-item {
  background-color: rgba(11, 8, 6, 0.5);
  border-radius: 10px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  text-align: center;
  backdrop-filter: blur(3px);
}

.trust-item strong {
  display: block;
  color: #ffe4c1;
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 4px;
}

.trust-item span {
  font-size: 12px;
  color: #f6eadd;
}

.btn {
  padding: 14px 35px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background-color: #8b7355;
  color: white;
}

.btn-primary:hover {
  background-color: #6d5841;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(139, 115, 85, 0.4);
}

.btn-secondary {
  background-color: rgba(11, 8, 6, 0.26);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.84);
}

.btn-secondary:hover {
  background-color: #fff;
  color: #3a2d21;
  transform: translateY(-3px);
}

.btn-small {
  padding: 10px 20px;
  font-size: 14px;
  background-color: #8b7355;
  color: white;
}

.btn-small:hover {
  background-color: #6d5841;
}

/* ============ CONSULTATION MODAL ============ */
body.modal-open {
  overflow: hidden;
}

.consultation-modal {
  position: fixed;
  inset: 0;
  z-index: 2200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.consultation-modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.consultation-backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(24, 20, 15, 0.58);
  backdrop-filter: blur(3px);
}

.consultation-panel {
  position: relative;
  background-color: #fff;
  width: min(760px, 100%);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  border-radius: 16px;
  padding: 34px;
  border: 1px solid #e8dfd4;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.22);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #e2ddd6;
  background-color: #fff;
  color: #444;
  font-size: 24px;
  line-height: 1;
  transition: all 0.25s ease;
}

.modal-close:hover {
  background-color: #8b7355;
  color: #fff;
}

.consultation-header {
  margin-bottom: 22px;
}

.consultation-kicker {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.09em;
  color: #8b7355;
  font-weight: 700;
  margin-bottom: 8px;
}

.consultation-header h3 {
  font-size: 30px;
  color: #1f1f1f;
  line-height: 1.25;
  margin-bottom: 12px;
}

.consultation-header p {
  color: #666;
  line-height: 1.7;
  font-size: 15px;
}

.consultation-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.consultation-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.consultation-field-full {
  grid-column: 1 / -1;
}

.consultation-field label {
  font-size: 14px;
  color: #333;
  font-weight: 600;
}

.consultation-field input,
.consultation-field select,
.consultation-field textarea {
  width: 100%;
  border: 1px solid #ddd4c9;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 14px;
  font-family: inherit;
  color: #333;
  background-color: #fcfaf7;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.consultation-field input:focus,
.consultation-field select:focus,
.consultation-field textarea:focus {
  outline: none;
  border-color: #8b7355;
  box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.15);
  background-color: #fff;
}

.consultation-actions {
  margin-top: 4px;
}

.consultation-note {
  margin-top: 12px;
  color: #777;
  font-size: 12px;
  line-height: 1.5;
}

/* ============ FEEDBACK MODAL ============ */
.feedback-modal {
  position: fixed;
  inset: 0;
  z-index: 2300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}

.feedback-modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.feedback-backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(10, 8, 6, 0.6);
  backdrop-filter: blur(2px);
}

.feedback-panel {
  position: relative;
  z-index: 1;
  width: min(460px, 100%);
  background-color: #fff;
  border-radius: 16px;
  border: 1px solid #ece2d7;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  padding: 28px;
  text-align: center;
}

.feedback-panel.is-error {
  border-color: #f0cfcf;
}

.feedback-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #e5ddd3;
  background: #fff;
  color: #5a5a5a;
  font-size: 24px;
  line-height: 1;
  transition: all 0.2s ease;
}

.feedback-close:hover {
  background-color: #8b7355;
  border-color: #8b7355;
  color: #fff;
}

.feedback-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  margin: 4px auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-weight: 700;
  background-color: #e9f7ed;
  color: #208a3c;
}

.feedback-panel.is-error .feedback-icon {
  background-color: #faecec;
  color: #b73b3b;
}

.feedback-panel h3 {
  font-size: 28px;
  color: #242424;
  margin-bottom: 10px;
  line-height: 1.25;
}

.feedback-panel p {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 18px;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ============ STATS SECTION ============ */
.stats {
  background-color: #8b7355;
  color: white;
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.stat-item h3 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
}

.stat-item p {
  font-size: 16px;
  opacity: 0.9;
}

/* ============ ABOUT SECTION ============ */
.about {
  background-color: #fafafa;
}

.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px;
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.about-text h2 {
  font-size: 42px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 30px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.feature {
  display: flex;
  gap: 15px;
}

.feature-icon {
  font-size: 28px;
  color: #8b7355;
  font-weight: bold;
  flex-shrink: 0;
}

.feature h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.feature p {
  font-size: 14px;
  color: #999;
}

/* ============ PRODUCTS SECTION ============ */
.products {
  background: linear-gradient(180deg, #ffffff 0%, #f7f3ee 100%);
  padding-bottom: 56px;
}

.eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #8b7355;
  font-weight: 700;
  margin-bottom: 10px;
}

.products-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 36px;
}

.products-heading h2 {
  font-size: 44px;
  color: #1f1f1f;
  line-height: 1.2;
  margin-bottom: 10px;
}

.products-heading p {
  font-size: 16px;
  color: #666;
  max-width: 640px;
  line-height: 1.7;
}

.products-head-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid #d8c6b3;
  background-color: #fff;
  color: #5c4731;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.25s ease;
}

.products-head-link:hover {
  border-color: #8b7355;
  color: #8b7355;
  transform: translateY(-2px);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 56px;
  align-items: stretch;
}

.product-card {
  grid-column: span 4;
  background: white;
  border: 1px solid #ebe4db;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.product-card-featured {
  grid-column: span 8;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
}

.product-card:hover {
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.12);
  transform: translateY(-8px);
}

.product-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.product-card-featured .product-image {
  height: 100%;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.08);
}

.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: rgba(17, 13, 9, 0.7);
  color: #fff;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.product-details {
  padding: 24px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card-featured .product-details {
  justify-content: center;
}

.product-details .btn-small {
  margin-top: auto;
}

.products-grid > .product-card:last-child {
  grid-column: 5 / span 4;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.product-meta span {
  border: 1px solid #e2d4c5;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #7b5f43;
  font-weight: 700;
}

.product-details h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}

.product-details p {
  font-size: 15px;
  color: #666;
  margin-bottom: 16px;
  line-height: 1.7;
}

.product-card-featured .product-details h3 {
  font-size: 30px;
}

.product-price {
  font-size: 26px;
  font-weight: 700;
  color: #8b7355;
  margin-bottom: 18px;
}

.product-card-featured .product-price {
  font-size: 34px;
}

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

/* ============ PORTFOLIO SECTION ============ */
.portfolio {
  background: linear-gradient(180deg, #f4efe8 0%, #f8f5f1 100%);
  padding-top: 56px;
}

.portfolio-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: flex-end;
  margin-bottom: 34px;
}

.portfolio-heading h2 {
  font-size: 44px;
  color: #1f1f1f;
  line-height: 1.2;
}

.portfolio-description {
  font-size: 16px;
  color: #626262;
  line-height: 1.8;
  max-width: 520px;
  justify-self: end;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 120px;
  gap: 20px;
}

.portfolio-item {
  grid-column: span 4;
  grid-row: span 2;
  position: relative;
  min-height: 260px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}

.portfolio-item-large {
  grid-column: span 8;
  grid-row: span 3;
}

.portfolio-item-tall {
  grid-row: span 3;
}

.portfolio-item-wide {
  grid-column: span 8;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(139, 115, 85, 0.9);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  text-align: left;
  color: white;
  opacity: 1;
  padding: 100px 22px 22px;
  background: linear-gradient(
    180deg,
    rgba(10, 8, 6, 0.02) 18%,
    rgba(10, 8, 6, 0.78) 100%
  );
  transition: all 0.35s ease;
}

.portfolio-tag {
  display: inline-block;
  margin-bottom: 12px;
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.portfolio-item:hover img {
  transform: scale(1.08);
}

.portfolio-item:hover .portfolio-overlay {
  background: linear-gradient(
    180deg,
    rgba(10, 8, 6, 0.06) 16%,
    rgba(10, 8, 6, 0.88) 100%
  );
  padding-bottom: 28px;
}

.portfolio-overlay h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}

.portfolio-overlay p {
  font-size: 15px;
  opacity: 0.95;
}

/* ============ TESTIMONIALS SECTION ============ */
.testimonials {
  background-color: white;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.testimonial-card {
  background: #fafafa;
  padding: 40px;
  border-radius: 12px;
  border: 1px solid #e8e8e8;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}

.star-rating {
  color: #ffc107;
  font-size: 14px;
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 15px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 25px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  gap: 15px;
  align-items: center;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 3px;
}

.testimonial-author p {
  font-size: 13px;
  color: #999;
}

/* ============ SERVICES SECTION ============ */
.services {
  background: linear-gradient(180deg, #ffffff 0%, #f7f3ee 100%);
  color: #333;
}

.services .section-header h2 {
  color: #1f1f1f;
}

.services .section-header p {
  color: #666;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: stretch;
}

.service-card {
  position: relative;
  background: #fff;
  padding: 38px 34px;
  border-radius: 18px;
  border: 1px solid #ebe4db;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 14px 34px rgba(27, 20, 14, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #8b7355 0%, #c2a07a 100%);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 46px rgba(27, 20, 14, 0.12);
  border-color: #dfd2c2;
}

.service-icon {
  width: 74px;
  height: 74px;
  margin: 0 auto 20px;
  border-radius: 18px;
  background: linear-gradient(180deg, #f7f1ea 0%, #efe5d9 100%);
  border: 1px solid #e0d2c1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.service-icon svg {
  width: 34px;
  height: 34px;
  stroke: #8b7355;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card:hover .service-icon {
  background: linear-gradient(180deg, #f4ece2 0%, #eadccf 100%);
  border-color: #cfb79b;
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(139, 115, 85, 0.14);
}

.service-card h3 {
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #1f1f1f;
}

.service-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  max-width: 32ch;
}

/* ============ CONTACT SECTION ============ */
.contact {
  background-color: white;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.info-block h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.info-block p {
  font-size: 15px;
  color: #666;
  line-height: 1.8;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group input,
.form-group textarea {
  padding: 15px;
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s ease;
  background-color: #fafafa;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #8b7355;
  background-color: white;
  box-shadow: 0 0 10px rgba(139, 115, 85, 0.1);
}

.contact-form button[type="submit"] {
  margin-top: 10px;
}

/* ============ FOOTER ============ */
.footer {
  background-color: #2c2c2c;
  color: #ccc;
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
  margin-bottom: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 50px;
}

.footer-section h3,
.footer-section h4 {
  color: white;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 600;
}

.footer-section p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 15px;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section a {
  font-size: 14px;
  color: #ccc;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #8b7355;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: #8b7355;
  color: white;
}

.footer-bottom {
  border-top: 1px solid #444;
  padding: 25px 50px;
  text-align: center;
  color: #999;
  font-size: 14px;
  max-width: 1200px;
  margin: 0 auto;
}

/* ============ RESPONSIVE DESIGN ============ */
@media (max-width: 1024px) {
  .container {
    padding: 0 30px;
  }

  .products-head {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 28px;
  }

  .products-heading h2,
  .portfolio-heading h2 {
    font-size: 38px;
  }

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

  .product-card {
    grid-column: auto;
  }

  .products-grid > .product-card:last-child {
    grid-column: auto;
  }

  .product-card-featured {
    grid-column: 1 / -1;
  }

  .product-card-featured .product-details h3 {
    font-size: 26px;
  }

  .portfolio-head {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 26px;
  }

  .portfolio-description {
    justify-self: start;
    max-width: 100%;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 220px;
  }

  .portfolio-item,
  .portfolio-item-large,
  .portfolio-item-tall,
  .portfolio-item-wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 220px;
  }

  .hero-content,
  .about-wrapper,
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .contact-info {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 42px;
  }

  .hero-trust {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .section-header h2 {
    font-size: 38px;
  }

  section {
    padding: 60px 0;
  }
}

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

  .nav-container {
    padding: 0 20px;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    left: 0;
    top: 70px;
    width: 100%;
    flex-direction: column;
    background-color: white;
    padding: 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    gap: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    max-height: 400px;
  }

  .cta-button {
    display: none;
  }

  .products-heading h2,
  .portfolio-heading h2 {
    font-size: 32px;
  }

  .hero-content,
  .about-wrapper,
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .product-card-featured {
    grid-template-columns: 1fr;
  }

  .product-card-featured .product-image {
    height: 260px;
  }

  .products-head-link {
    width: 100%;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .portfolio-item,
  .portfolio-item-large,
  .portfolio-item-tall,
  .portfolio-item-wide {
    min-height: 260px;
  }

  .portfolio-overlay h3 {
    font-size: 24px;
  }

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

  .contact-info {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 32px;
  }

  .section-header h2 {
    font-size: 28px;
  }

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

  .hero-trust {
    grid-template-columns: 1fr;
  }

  .consultation-panel {
    padding: 24px;
  }

  .feedback-panel {
    padding: 24px;
  }

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

  .service-card {
    padding: 32px;
  }

  .service-icon {
    width: 66px;
    height: 66px;
    border-radius: 16px;
  }

  .service-icon svg {
    width: 30px;
    height: 30px;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

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

  section {
    padding: 40px 0;
  }

  .products {
    padding-bottom: 36px;
  }

  .portfolio {
    padding-top: 36px;
  }

  .footer-grid {
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .nav-container {
    padding: 0 15px;
  }

  .logo {
    font-size: 20px;
  }

  .hero-title {
    font-size: 24px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .section-header h2 {
    font-size: 22px;
  }

  .products-heading h2,
  .portfolio-heading h2 {
    font-size: 26px;
  }

  .portfolio-item,
  .portfolio-item-large,
  .portfolio-item-tall,
  .portfolio-item-wide {
    min-height: 250px;
  }

  .hero-kicker {
    font-size: 11px;
  }

  .consultation-panel {
    padding: 20px;
    border-radius: 12px;
  }

  .feedback-panel {
    padding: 20px;
    border-radius: 12px;
  }

  .feedback-panel h3 {
    font-size: 24px;
  }

  .feedback-icon {
    width: 52px;
    height: 52px;
    font-size: 26px;
  }

  .service-card {
    padding: 26px;
  }

  .service-icon {
    width: 58px;
    height: 58px;
    border-radius: 14px;
  }

  .service-icon svg {
    width: 26px;
    height: 26px;
  }

  .consultation-header h3 {
    font-size: 24px;
  }

  .stat-item h3 {
    font-size: 32px;
  }

  .products-grid,
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-form {
    gap: 15px;
  }

  section {
    padding: 30px 0;
  }

  .products {
    padding-bottom: 26px;
  }

  .portfolio {
    padding-top: 26px;
  }
}

/* ============ ULTRA-SMALL PHONES (320px - 360px) ============ */
@media (max-width: 360px) {
  .container {
    padding: 0 16px;
  }

  .nav-container {
    padding: 0 16px;
  }

  .hero-title {
    font-size: 28px;
    line-height: 1.15;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .hero-highlights li {
    font-size: 13px;
    padding-left: 18px;
  }

  .hero-kicker {
    font-size: 10px;
    padding: 6px 10px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }

  .consultation-panel {
    padding: 20px;
    width: min(95vw, 100%);
  }

  .feedback-panel {
    padding: 20px;
    width: min(95vw, 100%);
  }

  .section-header h2 {
    font-size: 24px;
  }

  .products-heading p,
  .portfolio-description {
    font-size: 14px;
  }

  .product-details h3,
  .portfolio-overlay h3 {
    font-size: 18px;
  }

  .service-card {
    padding: 20px;
  }

  .service-card h3 {
    font-size: 18px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .stat-item h3 {
    font-size: 28px;
  }

  .testimonial-card {
    padding: 24px;
  }

  .testimonial-text {
    font-size: 14px;
  }

  .contact-info,
  .contact-wrapper {
    gap: 20px;
  }

  .info-block h3 {
    font-size: 16px;
  }

  .info-block p {
    font-size: 13px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 16px;
  }

  .footer-section h3 {
    font-size: 14px;
  }

  .footer-section p {
    font-size: 12px;
  }

  .hero-buttons {
    gap: 12px;
  }

  .hero-trust {
    gap: 10px;
  }

  .trust-item {
    padding: 10px;
  }

  .trust-item strong {
    font-size: 16px;
  }

  .trust-item span {
    font-size: 10px;
  }
}

/* ============ LANDSCAPE ORIENTATION (Mobile & Tablet) ============ */
@media (orientation: landscape) and (max-height: 600px) {
  .hero {
    padding: 60px 0;
    min-height: auto;
  }

  .hero-title {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .hero-subtitle {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .hero-highlights {
    margin-bottom: 12px;
    max-height: 60px;
    overflow-y: auto;
  }

  .hero-buttons {
    gap: 10px;
    margin-bottom: 12px;
  }

  .hero-buttons .btn {
    padding: 10px 20px;
    font-size: 13px;
  }

  .hero-trust {
    display: none;
  }

  section {
    padding: 40px 0;
  }

  .product-card-featured {
    grid-template-columns: 1fr;
  }

  .about-wrapper {
    gap: 30px;
  }

  .about-image img {
    height: 300px;
  }

  .consultation-panel {
    max-height: calc(100vh - 24px);
  }
}

/* ============ DESKTOP EXTRA LARGE (1400px+) ============ */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 50px;
  }

  .contact-wrapper {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 50px;
  }

  .footer-grid {
    max-width: 1320px;
    margin: 0 auto;
  }

  .footer-bottom {
    max-width: 1320px;
    margin: 0 auto;
  }
}

/* ============ TOUCH DEVICE ENHANCEMENTS ============ */
@media (hover: none) and (pointer: coarse) {
  .btn,
  .nav-link,
  a[href],
  button {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-link {
    padding: 12px 0;
  }

  .btn:active {
    opacity: 0.85;
    transform: scale(0.98);
  }

  .nav-link:active::after {
    width: 100%;
  }

  .product-card:active,
  .portfolio-item:active,
  .testimonial-card:active,
  .service-card:active {
    transform: scale(0.96);
  }
}

/* ============ REDUCED MOTION SUPPORT ============ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .hero-text {
    animation: none !important;
  }

  .portfolio-item img,
  .product-image img {
    transition: none;
  }

  .btn,
  .nav-link,
  .service-card,
  .product-card,
  .testimonial-card {
    transition: none !important;
  }
}

/* ============ PRINT STYLESHEET ============ */
@media print {
  *,
  *::before,
  *::after {
    background: transparent !important;
    color: black !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    color: #000 !important;
  }

  a[href]::after {
    content: " (" attr(href) ")";
  }

  header,
  nav,
  .hamburger,
  .nav-links,
  .cta-button,
  .hero-buttons,
  .consultation-modal,
  .feedback-modal,
  .btn,
  button,
  .modal-close,
  .contact-form,
  .consultation-form,
  .footer {
    display: none !important;
  }

  body {
    margin: 0;
    padding: 20px;
    line-height: 1.5;
    font-size: 12pt;
  }

  section {
    page-break-inside: avoid;
    margin-bottom: 30px;
  }

  .section-header,
  h1,
  h2,
  h3,
  h4 {
    page-break-after: avoid;
  }

  img {
    max-width: 100%;
    page-break-inside: avoid;
  }

  a {
    text-decoration: underline;
  }

  .hero {
    display: none;
  }

  .about,
  .portfolio,
  .services,
  .testimonials {
    page-break-inside: avoid;
  }
}

/* ============ IMAGE OPTIMIZATION ============ */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

picture {
  max-width: 100%;
}

svg {
  max-width: 100%;
  height: auto;
}

/* ============ MINIMUM BUTTON/TOUCH TARGET SIZES ============ */
button,
a[href],
input[type="button"],
input[type="submit"],
input[type="checkbox"],
input[type="radio"] {
  min-height: 44px;
  min-width: 44px;
}

@media (max-width: 480px) {
  button,
  a[href],
  input[type="button"],
  input[type="submit"] {
    min-height: 48px;
    min-width: 48px;
  }
}
