/* ===================================
   KANSAS CITY GRIND — STYLESHEET
   =================================== */

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

:root {
  --charcoal: #1A1A2E;
  --charcoal-light: #2D2D44;
  --charcoal-mid: #3D3D5C;
  --coral: #E8553A;
  --coral-light: #F07060;
  --coral-dark: #C94030;
  --cream: #FFF8F5;
  --cream-dark: #F5EDE8;
  --white: #FFFFFF;
  --text-primary: #1A1A2E;
  --text-secondary: #5A5A7A;
  --text-light: #8888A0;
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 2px 8px rgba(26, 26, 46, 0.06);
  --shadow-md: 0 8px 30px rgba(26, 26, 46, 0.10);
  --shadow-lg: 0 20px 60px rgba(26, 26, 46, 0.14);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

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

/* SECTION TAG */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 16px;
}

.section-tag::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--coral);
  border-radius: 2px;
}

/* SECTION TITLE */
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-xl);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--coral);
  color: var(--white);
  border-color: var(--coral);
}

.btn--primary:hover {
  background: var(--coral-dark);
  border-color: var(--coral-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 85, 58, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}

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

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

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

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

.btn--outline-white:hover {
  background: var(--white);
  color: var(--charcoal);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--sm {
  padding: 10px 20px;
  font-size: 0.875rem;
}

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

/* =====================
   NAVIGATION
   ===================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 248, 245, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(26, 26, 46, 0.06);
  transition: all var(--transition);
}

.nav.scrolled {
  background: rgba(255, 248, 245, 0.95);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--charcoal);
}

.nav-logo strong {
  color: var(--coral);
}

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

.nav-links a {
  padding: 8px 16px;
  border-radius: var(--radius-xl);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--transition);
}

.nav-links a:hover {
  color: var(--charcoal);
  background: rgba(26, 26, 46, 0.06);
}

.nav-cta {
  background: var(--coral) !important;
  color: var(--white) !important;
  margin-left: 8px;
}

.nav-cta:hover {
  background: var(--coral-dark) !important;
  color: var(--white) !important;
}

/* NAV TOGGLE */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--charcoal);
  padding: 8px;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.mobile-link {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--charcoal);
  padding: 12px 24px;
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

.mobile-link:hover {
  color: var(--coral);
  background: rgba(232, 85, 58, 0.06);
}

.mobile-link-cta {
  margin-top: 16px;
  background: var(--coral);
  color: var(--white) !important;
  border-radius: var(--radius-xl);
  padding: 14px 32px;
}

.mobile-link-cta:hover {
  background: var(--coral-dark);
}

/* =====================
   HERO
   ===================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--cream);
  padding: 100px 0 60px;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.geo-circle {
  position: absolute;
  border-radius: 50%;
}

.geo-circle--1 {
  width: 500px;
  height: 500px;
  background: rgba(232, 85, 58, 0.06);
  top: -120px;
  right: -100px;
}

.geo-circle--2 {
  width: 300px;
  height: 300px;
  background: rgba(26, 26, 46, 0.04);
  bottom: -60px;
  left: -60px;
}

.geo-triangle {
  position: absolute;
  width: 0;
  height: 0;
}

.geo-triangle--1 {
  border-left: 80px solid transparent;
  border-right: 80px solid transparent;
  border-bottom: 140px solid rgba(232, 85, 58, 0.08);
  top: 20%;
  left: 5%;
  transform: rotate(-15deg);
}

.geo-square {
  position: absolute;
  width: 100px;
  height: 100px;
  background: rgba(26, 26, 46, 0.04);
  border-radius: var(--radius-md);
  bottom: 15%;
  right: 8%;
  transform: rotate(30deg);
}

.geo-dots {
  position: absolute;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(circle, rgba(232, 85, 58, 0.25) 2px, transparent 2px);
  background-size: 16px 16px;
  top: 30%;
  left: 3%;
  opacity: 0.6;
}

.hero-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: var(--white);
  border-radius: var(--radius-xl);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  box-shadow: var(--shadow-sm);
  margin-bottom: 28px;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--coral);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

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

.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 24px;
}

.hero-headline em {
  color: var(--coral);
  font-style: normal;
}

.hero-subheadline {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 4px;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(26, 26, 46, 0.12);
}

/* HERO IMAGE */
.hero-image-wrap {
  position: relative;
}

.hero-image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.hero-image-accent {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--coral);
  border-radius: var(--radius-lg);
  opacity: 0.15;
  z-index: -1;
}

.hero-floating-card {
  position: absolute;
  bottom: 40px;
  left: -30px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-md);
  z-index: 2;
}

.hero-floating-card strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--charcoal);
}

.hero-floating-card span {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* =====================
   ABOUT
   ===================== */
.about {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.about-shape--top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--coral), var(--coral-light), var(--charcoal));
}

.about-shape--bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--charcoal), var(--coral-light), var(--coral));
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-images {
  position: relative;
}

.about-img-main {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-secondary {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 60%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}

.about-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-shape-accent {
  position: absolute;
  top: -30px;
  left: -30px;
  width: 100px;
  height: 100px;
  background: var(--coral);
  border-radius: var(--radius-md);
  opacity: 0.12;
  z-index: -1;
}

.about-content .section-title {
  margin-bottom: 24px;
}

.about-text {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}

.about-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.about-feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(232, 85, 58, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral);
}

.about-feature strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.about-feature span {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* =====================
   PRODUCTS
   ===================== */
.products {
  padding: 120px 0;
  position: relative;
  background: var(--charcoal);
  overflow: hidden;
}

.products-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.products-geo {
  position: absolute;
  opacity: 0.06;
}

.products-geo--circle {
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 2px solid var(--coral);
  top: -200px;
  right: -200px;
}

.products-geo--rect {
  width: 300px;
  height: 300px;
  background: var(--coral);
  border-radius: var(--radius-lg);
  bottom: -80px;
  left: -80px;
  transform: rotate(25deg);
}

.products .section-tag {
  color: var(--coral-light);
}

.products .section-tag::before {
  background: var(--coral-light);
}

.products .section-title {
  color: var(--white);
}

.products .section-subtitle {
  color: rgba(255,255,255,0.6);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.product-card {
  background: var(--charcoal-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.product-card-visual {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.product-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-card-visual img {
  transform: scale(1.05);
}

.product-card-geo {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  background: var(--coral);
  border-radius: 50%;
  opacity: 0.2;
}

.product-card-geo--alt {
  border-radius: var(--radius-sm);
  transform: rotate(20deg);
  background: var(--white);
}

.product-card-body {
  padding: 28px;
}

.product-card-icon {
  width: 52px;
  height: 52px;
  background: rgba(232, 85, 58, 0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.product-card-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.product-card-text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

/* =====================
   GALLERY
   ===================== */
.gallery {
  padding: 120px 0;
  background: var(--cream);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
  margin-top: 60px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}

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

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,46,0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay span {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}

.gallery-item--large {
  grid-column: 1 / 6;
  grid-row: 1 / 3;
  min-height: 500px;
}

.gallery-item--wide {
  grid-column: 6 / 13;
  grid-row: 2 / 3;
  min-height: 240px;
}

.gallery-item:not(.gallery-item--large):not(.gallery-item--wide) {
  min-height: 240px;
}

/* =====================
   VISIT
   ===================== */
.visit {
  padding: 120px 0;
  background: var(--white);
}

.visit-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.visit-details {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 40px;
}

.visit-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.visit-detail-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: rgba(232, 85, 58, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral);
}

.visit-detail strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.visit-detail p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.visit-detail a {
  color: var(--coral);
  transition: color var(--transition);
}

.visit-detail a:hover {
  color: var(--coral-dark);
  text-decoration: underline;
}

.visit-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 1 / 1;
  max-height: 500px;
}

.visit-map-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-mid) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 40px;
  text-align: center;
  color: var(--white);
}

.visit-map-placeholder p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

/* =====================
   CONTACT
   ===================== */
.contact {
  padding: 120px 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.contact-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.contact-shape {
  position: absolute;
  border-radius: 50%;
}

.contact-shape--1 {
  width: 400px;
  height: 400px;
  background: rgba(232, 85, 58, 0.05);
  top: -100px;
  left: -100px;
}

.contact-shape--2 {
  width: 250px;
  height: 250px;
  background: rgba(26, 26, 46, 0.04);
  bottom: -60px;
  right: -60px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.contact-text {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 36px;
}

.contact-direct {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-direct-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  color: var(--charcoal);
  padding: 12px 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.contact-direct-item:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
  color: var(--coral);
}

/* CONTACT FORM */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  position: relative;
}

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

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

.form-group label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
}

.form-group input,
.form-group textarea {
  padding: 14px 16px;
  border: 2px solid rgba(26, 26, 46, 0.1);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--cream);
  transition: all var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--coral);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(232, 85, 58, 0.1);
}

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

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

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  gap: 16px;
}

.form-success.show {
  display: flex;
}

.form-success-icon {
  width: 72px;
  height: 72px;
  background: rgba(232, 85, 58, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral);
}

.form-success h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--charcoal);
}

.form-success p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 320px;
}

/* =====================
   CTA BANNER
   ===================== */
.cta-banner {
  padding: 100px 0;
  background: var(--coral);
  position: relative;
  overflow: hidden;
}

.cta-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-shape {
  position: absolute;
}

.cta-shape--circle {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  top: -80px;
  right: 10%;
}

.cta-shape--square {
  width: 120px;
  height: 120px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  bottom: -30px;
  left: 5%;
  transform: rotate(30deg);
}

.cta-shape--triangle {
  width: 0;
  height: 0;
  border-left: 60px solid transparent;
  border-right: 60px solid transparent;
  border-bottom: 100px solid rgba(255,255,255,0.08);
  top: 20%;
  left: 15%;
  transform: rotate(-20deg);
}

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

.cta-headline {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.cta-text {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
  margin-bottom: 36px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =====================
   FOOTER
   ===================== */
.footer {
  background: var(--charcoal);
  color: var(--white);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 60px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-logo strong {
  color: var(--coral);
}

.footer-tagline {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  transition: all var(--transition);
}

.footer-links a:hover {
  color: var(--coral);
  padding-left: 6px;
}

.footer-contact p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 8px;
}

.footer-contact a {
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
}

/* =====================
   SCROLL ANIMATIONS
   ===================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-image-wrap {
    max-width: 500px;
    margin: 0 auto;
  }

  .hero-floating-card {
    left: 10px;
    bottom: 20px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-images {
    max-width: 500px;
  }

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

  .visit-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .visit-map {
    max-height: 400px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding: 100px 0 80px;
    min-height: auto;
  }

  .hero-headline {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .hero-stats {
    gap: 16px;
  }

  .hero-stat-number {
    font-size: 1.2rem;
  }

  .about {
    padding: 80px 0;
  }

  .about-img-secondary {
    right: -20px;
    bottom: -20px;
  }

  .products {
    padding: 80px 0;
  }

  .gallery {
    padding: 80px 0;
  }

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

  .gallery-item--large,
  .gallery-item--wide {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 280px;
  }

  .gallery-item:not(.gallery-item--large):not(.gallery-item--wide) {
    min-height: 220px;
  }

  .visit {
    padding: 80px 0;
  }

  .contact {
    padding: 80px 0;
  }

  .contact-form-wrap {
    padding: 28px;
  }

  .cta-banner {
    padding: 80px 0;
  }

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

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

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

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

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

  .hero-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .hero-stat-divider {
    display: none;
  }

  .hero-floating-card {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: 16px;
  }

  .about-img-secondary {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 16px;
  }

  .about-images {
    display: flex;
    flex-direction: column;
  }

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

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