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

:root {
  --coral: #E85D4A;
  --coral-light: #FF7B66;
  --coral-dark: #C94A38;
  --charcoal: #2D2D2D;
  --charcoal-light: #3D3D3D;
  --cream: #F9F6F2;
  --cream-dark: #F0EAE2;
  --warm-gray: #8A8279;
  --white: #FFFFFF;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 2px 8px rgba(45, 45, 45, 0.06);
  --shadow-md: 0 4px 20px rgba(45, 45, 45, 0.1);
  --shadow-lg: 0 8px 40px rgba(45, 45, 45, 0.12);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--charcoal);
  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: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  line-height: 1.2;
  color: var(--charcoal);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-xl);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.938rem;
  letter-spacing: 0.01em;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.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 6px 20px rgba(232, 93, 74, 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-outline-light {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

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

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(249, 246, 242, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(45, 45, 45, 0.06);
  transition: var(--transition);
}

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

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  color: var(--charcoal);
}

.logo-mark {
  font-size: 1.6rem;
  color: var(--coral);
  line-height: 1;
}

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

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav a {
  font-size: 0.938rem;
  font-weight: 500;
  color: var(--charcoal);
  transition: var(--transition);
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--coral);
  transition: var(--transition);
}

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

.main-nav a:hover {
  color: var(--coral);
}

.nav-cta {
  background: var(--charcoal);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: var(--radius-xl);
  font-weight: 600 !important;
  transition: var(--transition);
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  background: var(--coral);
  color: var(--white) !important;
  transform: translateY(-1px);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  position: relative;
  width: 40px;
  height: 40px;
}

.hamburger {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  transition: var(--transition);
}

.hamburger::before { top: -7px; }
.hamburger::after { bottom: -7px; }

.nav-toggle[aria-expanded="true"] .hamburger {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
  bottom: 0;
  transform: rotate(-45deg);
}

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

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

.shape {
  position: absolute;
  opacity: 0.08;
}

.shape-circle {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: var(--coral);
  top: -100px;
  right: 30%;
}

.shape-square {
  width: 200px;
  height: 200px;
  background: var(--charcoal);
  bottom: 10%;
  left: -40px;
  transform: rotate(15deg);
}

.shape-ring {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 20px solid var(--coral);
  top: 20%;
  left: 8%;
  opacity: 0.05;
}

.shape-dots {
  width: 120px;
  height: 120px;
  background-image: radial-gradient(circle, var(--charcoal) 2px, transparent 2px);
  background-size: 16px 16px;
  bottom: 20%;
  right: 5%;
  opacity: 0.12;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background: rgba(232, 93, 74, 0.1);
  color: var(--coral);
  font-size: 0.813rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: var(--radius-xl);
  margin-bottom: 24px;
}

.hero-headline {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero-accent {
  display: block;
  color: var(--coral);
  font-style: italic;
  font-size: 0.85em;
  margin-top: 8px;
}

.hero-body {
  font-size: 1.125rem;
  color: var(--warm-gray);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 500px;
}

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

.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--warm-gray);
}

.trust-item svg {
  color: var(--coral);
  flex-shrink: 0;
}

/* Hero images */
.hero-image-wrap {
  position: relative;
}

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

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

.hero-image-float {
  position: absolute;
  bottom: -30px;
  left: -50px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--cream);
}

.hero-image-float img {
  width: 280px;
  height: 200px;
  object-fit: cover;
}

.hero-stat {
  position: absolute;
  top: 30px;
  right: -30px;
  background: var(--charcoal);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.stat-number {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 2.5rem;
  color: var(--coral);
  line-height: 1;
}

.stat-label {
  font-size: 0.813rem;
  opacity: 0.8;
  margin-top: 4px;
}

/* ===== SECTION COMMON ===== */
.section-tag {
  display: inline-block;
  font-size: 0.813rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  margin-bottom: 20px;
  line-height: 1.15;
}

.section-subtitle {
  font-size: 1.063rem;
  color: var(--warm-gray);
  line-height: 1.7;
  max-width: 600px;
}

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

.section-header .section-subtitle {
  margin: 0 auto;
}

/* ===== PRODUCTS ===== */
.products {
  padding: 100px 0;
  background: var(--white);
  position: relative;
}

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

.product-card {
  position: relative;
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  transition: var(--transition);
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.card-accent--coral { background: var(--coral); }
.card-accent--charcoal { background: var(--charcoal); }

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}

.product-card:nth-child(odd) .card-icon {
  background: rgba(232, 93, 74, 0.1);
  color: var(--coral);
}

.product-card:nth-child(even) .card-icon {
  background: rgba(45, 45, 45, 0.08);
  color: var(--charcoal);
}

.product-card:hover .card-icon {
  transform: scale(1.1);
}

.card-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.375rem;
  margin-bottom: 12px;
}

.card-body {
  font-size: 0.938rem;
  color: var(--warm-gray);
  line-height: 1.7;
}

/* Geometric divider */
.geo-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.geo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
}

.geo-line {
  width: 60px;
  height: 2px;
  background: rgba(232, 93, 74, 0.2);
}

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

.about::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(232, 93, 74, 0.05);
  pointer-events: none;
}

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

.about-image-stack {
  position: relative;
}

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

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

.about-img-accent {
  position: absolute;
  bottom: -40px;
  right: -40px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--cream);
}

.about-img-accent img {
  width: 400px;
  height: 300px;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  top: -20px;
  left: -20px;
  background: var(--coral);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.about-badge .badge-number {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 2.25rem;
  line-height: 1;
}

.about-badge .badge-text {
  font-size: 0.813rem;
  opacity: 0.9;
  margin-top: 4px;
}

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

.about-body {
  font-size: 1.063rem;
  color: var(--warm-gray);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-values {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.938rem;
  font-weight: 500;
}

.value-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(232, 93, 74, 0.1);
  color: var(--coral);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

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

.visit-body {
  font-size: 1.063rem;
  color: var(--warm-gray);
  line-height: 1.7;
  margin-bottom: 36px;
}

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

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--cream);
  padding: 24px 28px;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}

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

.contact-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.813rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 6px;
}

.contact-card p {
  font-size: 0.938rem;
  line-height: 1.6;
}

.contact-card a {
  color: var(--coral);
  font-weight: 500;
  transition: var(--transition);
}

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

/* Map */
.visit-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.map-placeholder {
  position: relative;
}

.map-placeholder svg {
  width: 100%;
  height: auto;
  display: block;
}

.map-cta {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-size: 0.875rem;
  padding: 12px 20px;
}

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

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

.cta-shape {
  position: absolute;
  opacity: 0.06;
}

.cta-shape--circle {
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: var(--coral);
  top: -150px;
  left: -100px;
}

.cta-shape--square {
  width: 200px;
  height: 200px;
  background: var(--coral);
  bottom: -60px;
  right: 10%;
  transform: rotate(25deg);
}

.cta-shape--ring {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 24px solid var(--coral);
  top: 10%;
  right: 5%;
  opacity: 0.04;
}

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

.cta-title {
  font-size: clamp(1.75rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
}

.cta-body {
  font-size: 1.063rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 36px;
}

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

/* ===== FOOTER ===== */
.site-footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 0;
}

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

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 0.938rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.813rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

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

.footer-links a {
  font-size: 0.938rem;
  transition: var(--transition);
}

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

.footer-contact p {
  font-size: 0.938rem;
  line-height: 1.7;
  margin-bottom: 8px;
}

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

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
}

.footer-bottom p {
  font-size: 0.813rem;
  opacity: 0.5;
}

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

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

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid {
    gap: 40px;
  }

  .hero-image-float {
    left: -20px;
    bottom: -20px;
  }

  .hero-stat {
    right: -10px;
    top: 20px;
  }

  .about-grid {
    gap: 48px;
  }

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

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

  .main-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(249, 246, 242, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 24px;
    border-bottom: 1px solid rgba(45, 45, 45, 0.06);
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 20px;
  }

  .main-nav a {
    font-size: 1.063rem;
  }

  .nav-cta {
    display: block;
    text-align: center;
    margin-top: 8px;
  }

  /* Hero mobile */
  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }

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

  .hero-image-wrap {
    order: -1;
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }

  .hero-image-main img {
    height: 480px;
  }

  .hero-image-float {
    left: -10px;
    bottom: -15px;
  }

  .hero-image-float img {
    width: 200px;
    height: 150px;
  }

  .hero-stat {
    right: 10px;
    top: 10px;
    padding: 14px 18px;
  }

  .stat-number {
    font-size: 1.75rem;
  }

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

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

  .hero-trust {
    flex-direction: column;
    gap: 12px;
  }

  /* Products mobile */
  .products-grid {
    grid-template-columns: 1fr;
  }

  /* About mobile */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .about-image-stack {
    max-width: 480px;
    margin: 0 auto;
  }

  .about-img-main img {
    height: 400px;
  }

  .about-img-accent {
    width: 240px;
    height: 180px;
    right: -10px;
    bottom: -10px;
  }

  .about-badge {
    left: -10px;
    top: -10px;
  }

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

  /* Visit mobile */
  .visit-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  /* CTA mobile */
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  /* Footer mobile */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

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

  .hero-headline {
    font-size: 2rem;
  }

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