/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --red:       #a01e20;
  --red-dark:  #7e1618;
  --red-light: #f5e8e8;
  --cream:     #f7f0ee;
  --dark:      #1a1a1a;
  --mid:       #4a4a4a;
  --light:     #f9f9f9;
  --white:     #ffffff;
  --border:    #e8dada;
  --shadow:    0 2px 16px rgba(0,0,0,0.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 10px rgba(0,0,0,0.06);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  height: 46px;
  object-fit: contain;
}

.header-nav {
  display: flex;
  gap: 32px;
}

.header-nav a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--mid);
  letter-spacing: 0.3px;
  transition: color 0.2s;
}

.header-nav a:hover {
  color: var(--red);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  background: linear-gradient(135deg, #2b0a0b 0%, var(--red-dark) 45%, var(--red) 100%);
  padding: 80px 40px;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto 0 0;
  padding-left: calc((100vw - 1100px) / 2);
  padding-left: max(40px, calc((100vw - 1100px) / 2));
}

.hero-tag {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
  border: 1px solid rgba(255,255,255,0.2);
}

.hero-title {
  font-size: 52px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.hero-title span {
  color: #f4c0c0;
}

.hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 28px;
  max-width: 440px;
  line-height: 1.7;
}

.btn-primary {
  display: inline-block;
  background: var(--white);
  color: var(--red);
  font-size: 14px;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover {
  background: #f0e0e0;
  transform: translateY(-1px);
}

.hero-decor {
  position: absolute;
  right: 0;
  top: 0;
  width: 240px;
  opacity: 0.18;
  pointer-events: none;
}

.hero-decor img {
  width: 100%;
  display: block;
}

/* ===== SECTION COMMON ===== */
.section {
  padding: 64px 0;
}

.section-head {
  margin-bottom: 40px;
}

.section-head.centered {
  text-align: center;
}

.label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}

.section-head h2 {
  font-size: 30px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.3px;
}

/* ===== ABOUT ===== */
.about-section {
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  align-items: start;
}

.about-text h2 {
  font-size: 30px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}

.about-text p {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 12px;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  transition: box-shadow 0.2s;
}

.stat-box:hover {
  box-shadow: var(--shadow);
}

.stat-box i {
  font-size: 22px;
  color: var(--red);
  margin-bottom: 4px;
}

.stat-box strong {
  font-size: 18px;
  font-weight: 800;
  color: var(--dark);
  display: block;
}

.stat-box span {
  font-size: 12px;
  color: var(--mid);
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* ===== SERVICES ===== */
.services-section {
  background: var(--white);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}

.card:hover {
  box-shadow: 0 6px 24px rgba(160, 30, 32, 0.1);
  transform: translateY(-3px);
  border-color: #dba8a9;
}

.card-icon {
  width: 44px;
  height: 44px;
  background: var(--red-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.card-icon i {
  font-size: 18px;
  color: var(--red);
}

.card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.4;
}

.card p {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.65;
}

/* ===== BENEFITS ===== */
.benefits-section {
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.benefit-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 22px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: box-shadow 0.2s;
}

.benefit-item:hover {
  box-shadow: var(--shadow);
}

.benefit-icon {
  width: 42px;
  height: 42px;
  background: var(--red-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon i {
  font-size: 17px;
  color: var(--red);
}

.benefit-body h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.benefit-body p {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.65;
}

/* ===== MANAGEMENT ===== */
.management-section {
  background: var(--white);
}

.management-img-wrap {
  border-radius: 12px;
  overflow: hidden;
  /* border: 1px solid var(--border);
  box-shadow: var(--shadow); */
}

.management-img-wrap img {
  width: 100%;
  display: block;
}

/* ===== CONTACT ===== */
.contact-section {
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.contact-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: box-shadow 0.2s;
}

.contact-item:hover {
  box-shadow: var(--shadow);
}

.contact-icon {
  width: 36px;
  height: 36px;
  background: var(--red-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 14px;
  color: var(--red);
}

.contact-item strong {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 4px;
}

.contact-item p {
  font-size: 14px;
  color: var(--dark);
  line-height: 1.5;
}

.contact-item a {
  color: var(--red);
  text-decoration: none;
  font-weight: 500;
}

.contact-item a:hover {
  text-decoration: underline;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  height: 52px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.3px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-title {
    font-size: 40px;
  }
  .hero-content {
    padding-left: 40px;
  }
}

@media (max-width: 720px) {
  .cards-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .about-stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }
  .header-nav {
    gap: 20px;
  }
  .hero {
    padding: 60px 24px;
    min-height: auto;
  }
  .hero-content {
    padding-left: 0;
  }
  .hero-title {
    font-size: 34px;
  }
  .section {
    padding: 48px 0;
  }
  .container {
    padding: 0 24px;
  }
  .header-inner {
    padding: 0 24px;
  }
}

@media (max-width: 480px) {
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .header-nav {
    display: none;
  }
  .header-logo {
    height: 38px;
  }
  .hero-title {
    font-size: 28px;
  }
  .section-head h2 {
    font-size: 24px;
  }
  .footer {
    padding: 28px 20px;
  }
}
