/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: #1a1a2e;
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}
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; }

/* ── Color Tokens ── */
:root {
  --burgundy: #7B2D3B;
  --burgundy-dark: #5e1f2b;
  --blush: #F5D5CC;
  --blush-light: #FDF0EC;
  --blush-dark: #e8b4a8;
  --cream: #FFF8F5;
  --dark: #1a1a2e;
  --gray: #6b7280;
  --gray-light: #f3f4f6;
  --white: #ffffff;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(123,45,59,0.08);
  --shadow-lg: 0 12px 48px rgba(123,45,59,0.12);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Typography ── */
h1, h2, h3, .logo-mark, .stat-num, .accent-num, .why-num {
  font-family: 'Bebas Neue', Impact, sans-serif;
  letter-spacing: 0.02em;
}
.accent { color: var(--burgundy); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.938rem;
  border: 2px solid transparent;
  border-radius: 50px;
  padding: 12px 28px;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--burgundy);
  color: var(--white);
  border-color: var(--burgundy);
}
.btn-primary:hover { background: var(--burgundy-dark); border-color: var(--burgundy-dark); }
.btn-outline {
  background: transparent;
  color: var(--burgundy);
  border-color: var(--burgundy);
}
.btn-outline:hover { background: var(--burgundy); color: var(--white); }
.btn-lg { padding: 16px 36px; font-size: 1.063rem; }
.btn-full { width: 100%; justify-content: center; }
.btn-white {
  background: var(--white);
  color: var(--burgundy);
  border-color: var(--white);
}
.btn-white:hover { background: var(--blush); border-color: var(--blush); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-white:hover { background: var(--white); color: var(--burgundy); }
.btn-header {
  background: var(--burgundy);
  color: var(--white);
  border-color: var(--burgundy);
  padding: 10px 22px;
  font-size: 0.875rem;
}
.btn-header:hover { background: var(--burgundy-dark); }

/* ── Section Labels ── */
.section-label {
  display: inline-block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  color: var(--burgundy);
  background: var(--blush);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 20px;
}

/* ── Header ── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--blush);
  transition: var(--transition);
}
.header.scrolled { box-shadow: var(--shadow); }
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-mark {
  width: 44px;
  height: 44px;
  background: var(--burgundy);
  color: var(--white);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  flex-shrink: 0;
}
.logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.125rem;
  line-height: 1.1;
  color: var(--dark);
  letter-spacing: 0.05em;
}
.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav a:not(.btn) {
  font-weight: 500;
  font-size: 0.938rem;
  color: var(--dark);
  position: relative;
  transition: var(--transition);
}
.nav a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--burgundy);
  transition: var(--transition);
}
.nav a:not(.btn):hover { color: var(--burgundy); }
.nav a:not(.btn):hover::after { width: 100%; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 2.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: 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); }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--burgundy);
  overflow: hidden;
  padding: 120px 24px 80px;
}
.hero-bg-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.geo { position: absolute; }
.geo-circle {
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: var(--blush);
  opacity: 0.08;
  top: -200px;
  right: -100px;
}
.geo-ring {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 30px solid var(--blush);
  opacity: 0.06;
  bottom: -100px;
  left: -80px;
}
.geo-dots {
  width: 200px;
  height: 200px;
  background-image: radial-gradient(circle, var(--blush) 1.5px, transparent 1.5px);
  background-size: 20px 20px;
  opacity: 0.2;
  top: 30%;
  left: 5%;
}
.geo-stripe {
  width: 300px;
  height: 400px;
  background: repeating-linear-gradient(
    -45deg,
    var(--blush),
    var(--blush) 4px,
    transparent 4px,
    transparent 12px
  );
  opacity: 0.05;
  bottom: 10%;
  right: 10%;
  transform: rotate(15deg);
}
.hero-container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  text-align: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,213,204,0.15);
  border: 1px solid rgba(245,213,204,0.3);
  color: var(--blush);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 28px;
}
.hero-title {
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-title .accent { color: var(--blush); }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(245,213,204,0.8);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
  font-size: 2.25rem;
  color: var(--blush);
  display: block;
}
.stat-label {
  font-size: 0.813rem;
  color: rgba(245,213,204,0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.stat-divider {
  width: 1px;
  background: rgba(245,213,204,0.2);
  align-self: stretch;
}
.hero-accent-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--blush), var(--blush-dark), var(--burgundy), var(--blush-dark), var(--blush));
}

/* ── Services ── */
.services {
  padding: 100px 0;
  background: var(--cream);
  position: relative;
}
.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--burgundy), var(--blush), var(--burgundy));
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.svc-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(123,45,59,0.06);
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--burgundy);
  transform: scaleX(0);
  transition: var(--transition);
}
.svc-card:hover::before { transform: scaleX(1); }
.svc-icon {
  width: 56px;
  height: 56px;
  background: var(--blush-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--burgundy);
  margin-bottom: 20px;
  transition: var(--transition);
}
.svc-card:hover .svc-icon { background: var(--burgundy); color: var(--white); }
.svc-card h3 {
  font-size: 1.375rem;
  color: var(--dark);
  margin-bottom: 10px;
}
.svc-card p {
  color: var(--gray);
  font-size: 0.938rem;
  line-height: 1.65;
  margin-bottom: 16px;
}
.svc-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--burgundy);
  background: var(--blush);
  padding: 4px 12px;
  border-radius: 50px;
}

/* ── About ── */
.about {
  padding: 100px 0;
  background: var(--white);
  position: relative;
}
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-visual { position: relative; }
.about-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-accent-block {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--burgundy);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: var(--shadow-lg);
}
.about-accent-inner { display: flex;
  flex-direction: column; }
.accent-num {
  font-size: 2.5rem;
  color: var(--blush);
  line-height: 1;
}
.accent-label {
  font-size: 0.875rem;
  color: rgba(245,213,204,0.7);
  line-height: 1.4;
}
.about-content .section-title { margin-top: 8px; }
.about-text {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 16px;
}
.about-features {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.about-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.938rem;
  color: var(--dark);
  font-weight: 500;
}
.about-features svg { color: var(--burgundy); flex-shrink: 0; margin-top: 2px; }

/* ── Why Us ── */
.why {
  padding: 100px 0;
  background: var(--burgundy);
  position: relative;
  overflow: hidden;
}
.why::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: var(--blush);
  opacity: 0.04;
  top: -200px;
  right: -100px;
}
.why::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border: 40px solid var(--blush);
  opacity: 0.04;
  border-radius: 50%;
  bottom: -100px;
  left: -50px;
}
.why-header { text-align: center; margin-bottom: 56px; position: relative; z-index: 1; }
.why-header .section-label { background: rgba(245,213,204,0.15); color: var(--blush); }
.why-header .section-title { color: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  position: relative;
  z-index: 1;
}
.why-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(245,213,204,0.1);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
}
.why-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}
.why-num {
  font-size: 3rem;
  color: var(--blush);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 16px;
}
.why-card h3 {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 10px;
}
.why-card p {
  color: rgba(245,213,204,0.7);
  font-size: 0.938rem;
  line-height: 1.65;
}

/* ── CTA Strip ── */
.cta-strip {
  padding: 80px 0;
  background: var(--blush);
  position: relative;
  overflow: hidden;
}
.cta-strip-bg { position: absolute; inset: 0; pointer-events: none; }
.geo-circle--sm {
  width: 300px; height: 300px;
  top: -80px; left: -60px;
  opacity: 0.15;
}
.geo-ring--sm {
  width: 200px; height: 200px;
  bottom: -50px; right: 10%;
  border-width: 20px;
  opacity: 0.12;
}
.cta-strip .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
}
.cta-strip-content blockquote {
  max-width: 700px;
}
.quote-icon { margin-bottom: 16px; }
.cta-strip-content p {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: var(--dark);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 8px;
}
.cta-strip-content footer {
  font-size: 0.875rem;
  color: var(--burgundy);
  font-weight: 600;
  font-style: normal;
}
.cta-strip-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ── Contact ── */
.contact {
  padding: 100px 0;
  background: var(--cream);
  position: relative;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-intro {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 36px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--burgundy);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}
.contact-item strong {
  display: block;
  font-size: 0.813rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--burgundy);
  margin-bottom: 4px;
}
.contact-item span,
.contact-item a {
  font-size: 0.938rem;
  color: var(--dark);
  line-height: 1.6;
}
.contact-item a:hover { color: var(--burgundy); text-decoration: underline; }

/* Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.form-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--burgundy), var(--blush));
}
.contact-form h3 {
  font-size: 1.75rem;
  color: var(--dark);
  margin-bottom: 24px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 0.813rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--dark);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--blush);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.938rem;
  color: var(--dark);
  background: var(--blush-light);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--burgundy);
  background: var(--white);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--blush-dark); }
.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: var(--radius);
  color: #065f46;
  font-weight: 500;
  margin-top: 16px;
}
.form-success.show { display: flex; }
.form-success svg { color: #10b981; flex-shrink: 0; }

/* ── Map ── */
.map-section { height: 350px; filter: grayscale(30%); }
.map-section iframe { width: 100%; height: 100%; }

/* ── Footer ── */
.footer {
  background: var(--dark);
  color: rgba(245,213,204,0.6);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo-text { color: var(--white); }
.footer-brand p { font-size: 0.875rem; line-height: 1.7; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links strong {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.125rem;
  color: var(--blush);
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.footer-links a {
  font-size: 0.875rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--blush); }
.footer-bottom {
  border-top: 1px solid rgba(245,213,204,0.1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.813rem;
}
.footer-bottom a:hover { color: var(--blush); }

/* ── Back to Top ── */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--burgundy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--burgundy-dark); transform: translateY(-3px); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .about-layout,
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { max-width: 500px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 2px solid var(--blush);
    transform: translateY(-120%);
    transition: var(--transition);
    box-shadow: var(--shadow);
  }
  .nav.open { transform: translateY(0); }
  .nav a:not(.btn) { font-size: 1.125rem; }
  .hero { padding: 100px 20px 60px; }
  .hero-stats { gap: 24px; }
  .stat-divider { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .about-accent-block { position: relative; bottom: auto; right: auto; margin-top: 16px; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .cta-strip-actions { flex-direction: column; align-items: center; }
  .cta-strip-actions .btn { width: 100%; justify-content: center; }
}
