/* ── Reset & Base ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Navigation ── */
.nav-scrolled {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 248, 245, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 20px rgba(123, 45, 59, 0.08);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nav-scrolled .nav-logo-text {
  color: #7B2D3B;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.2rem;
  color: #7B2D3B;
  transition: opacity 0.2s;
}

.nav-logo:hover {
  opacity: 0.8;
}

.nav-logo-text {
  font-size: 1.15rem;
  color: #361017;
  transition: color 0.3s;
}

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

.nav-link {
  font-size: 0.925rem;
  font-weight: 600;
  color: #5C4F4F;
  position: relative;
  padding: 4px 0;
  transition: color 0.2s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #7B2D3B;
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: #7B2D3B;
}

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

.nav-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #7B2D3B;
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.nav-cta:hover {
  background: #6c2430;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(123, 45, 59, 0.3);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: #7B2D3B;
}

/* ── Mobile Menu ── */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(54, 16, 23, 0.5);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

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

.mobile-menu-content {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background: #FDF8F5;
  padding: 100px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.15);
}

.mobile-menu-overlay.active .mobile-menu-content {
  transform: translateX(0);
}

.mobile-nav-link {
  font-size: 1.15rem;
  font-weight: 600;
  color: #5C4F4F;
  padding: 14px 0;
  border-bottom: 1px solid rgba(123, 45, 59, 0.1);
  transition: color 0.2s, padding-left 0.2s;
}

.mobile-nav-link:hover {
  color: #7B2D3B;
  padding-left: 8px;
}

.mobile-nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  background: #7B2D3B;
  color: #fff;
  padding: 14px 24px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  justify-content: center;
  transition: background 0.2s;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(54, 16, 23, 0.82) 0%,
    rgba(123, 45, 59, 0.65) 50%,
    rgba(123, 45, 59, 0.4) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffd0d9;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
  letter-spacing: 0.02em;
}

.hero-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
  max-width: 700px;
}

.hero-accent {
  color: #ffd0d9;
  font-style: italic;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 40px;
  font-weight: 400;
}

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

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

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  font-weight: 600;
}

.trust-item svg {
  color: #ffd0d9;
  flex-shrink: 0;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.6);
  animation: heroScrollBounce 2s infinite;
  transition: color 0.2s;
}

.hero-scroll:hover {
  color: #fff;
}

@keyframes heroScrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: 'Nunito', system-ui, sans-serif;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s ease;
  text-align: center;
}

.btn-primary {
  background: #7B2D3B;
  color: #fff;
  border-color: #7B2D3B;
}

.btn-primary:hover {
  background: #6c2430;
  border-color: #6c2430;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(123, 45, 59, 0.35);
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  transform: translateY(-2px);
}

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

.btn-lg {
  padding: 16px 32px;
  font-size: 1rem;
}

/* ── Section Shared ── */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7B2D3B;
  background: rgba(123, 45, 59, 0.08);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #361017;
  line-height: 1.15;
  margin-bottom: 16px;
}

.accent-text {
  color: #7B2D3B;
  font-style: italic;
}

.section-desc {
  font-size: 1.1rem;
  color: #5C4F4F;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

/* ── Services ── */
.services {
  padding: 100px 0;
  background: #fff;
}

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

.service-card {
  background: #FDF8F5;
  border-radius: 20px;
  padding: 36px 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(123, 45, 59, 0.06);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(123, 45, 59, 0.1);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #7B2D3B, #d44562);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 20px;
}

.service-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.25rem;
  color: #361017;
  margin-bottom: 10px;
}

.service-desc {
  font-size: 0.95rem;
  color: #5C4F4F;
  line-height: 1.7;
}

/* ── About ── */
.about {
  padding: 100px 0;
  background: #FDF8F5;
  overflow: hidden;
}

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

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(123, 45, 59, 0.15);
}

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

.about-img-secondary {
  position: absolute;
  bottom: -40px;
  right: -30px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(123, 45, 59, 0.2);
  border: 5px solid #FDF8F5;
}

.about-img-secondary img {
  width: 220px;
  height: 220px;
  object-fit: cover;
}

.about-img-accent {
  position: absolute;
  top: -20px;
  left: -20px;
}

.about-accent-badge {
  width: 110px;
  height: 110px;
  background: linear-gradient(135deg, #7B2D3B, #d44562);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  box-shadow: 0 12px 32px rgba(123, 45, 59, 0.35);
}

.about-accent-badge svg {
  margin-bottom: 4px;
}

.about-accent-badge span {
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.04em;
}

.about-content {
  padding: 20px 0;
}

.about-text {
  font-size: 1.05rem;
  color: #5C4F4F;
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin: 32px 0 40px;
  padding: 28px 0;
  border-top: 1px solid rgba(123, 45, 59, 0.1);
  border-bottom: 1px solid rgba(123, 45, 59, 0.1);
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.75rem;
  color: #7B2D3B;
}

.stat-label {
  font-size: 0.85rem;
  color: #5C4F4F;
  font-weight: 600;
}

/* ── Why Us ── */
.why-us {
  padding: 100px 0;
  background: #fff;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  background: #FDF8F5;
  border-radius: 20px;
  padding: 36px 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(123, 45, 59, 0.06);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(123, 45, 59, 0.1);
}

.why-card-number {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 3.5rem;
  color: rgba(123, 45, 59, 0.08);
  line-height: 1;
  margin-bottom: 16px;
}

.why-card-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.2rem;
  color: #361017;
  margin-bottom: 10px;
}

.why-card-desc {
  font-size: 0.925rem;
  color: #5C4F4F;
  line-height: 1.7;
}

/* ── Gallery ── */
.gallery {
  padding: 100px 0;
  background: #FDF8F5;
}

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

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 5/4;
  cursor: pointer;
}

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

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(54, 16, 23, 0.75) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.gallery-item-overlay span {
  color: #fff;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.15rem;
}

/* ── CTA Section ── */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #361017 0%, #7B2D3B 60%, #d44562 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
}

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

.cta-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
}

.cta-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 40px;
}

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

/* ── Contact ── */
.contact {
  padding: 100px 0;
  background: #fff;
}

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

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #7B2D3B, #d44562);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  font-size: 0.95rem;
  color: #361017;
  margin-bottom: 4px;
}

.contact-item p {
  font-size: 0.925rem;
  color: #5C4F4F;
  line-height: 1.6;
}

.contact-item a {
  color: #7B2D3B;
  font-weight: 600;
  transition: color 0.2s;
}

.contact-item a:hover {
  color: #d44562;
}

.contact-form-wrapper {
  width: 100%;
}

.contact-form-card {
  background: #FDF8F5;
  border-radius: 24px;
  padding: 40px;
  border: 1px solid rgba(123, 45, 59, 0.08);
  box-shadow: 0 8px 32px rgba(123, 45, 59, 0.06);
}

.form-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.5rem;
  color: #361017;
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: #361017;
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid rgba(123, 45, 59, 0.15);
  border-radius: 12px;
  font-size: 0.95rem;
  font-family: 'Nunito', system-ui, sans-serif;
  color: #361017;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #b0a0a0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #7B2D3B;
  box-shadow: 0 0 0 4px rgba(123, 45, 59, 0.08);
}

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

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

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

.form-success svg {
  color: #7B2D3B;
  margin-bottom: 16px;
}

.form-success h4 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.5rem;
  color: #361017;
  margin-bottom: 8px;
}

.form-success p {
  color: #5C4F4F;
  line-height: 1.6;
}

.contact-desc {
  font-size: 1.05rem;
  color: #5C4F4F;
  line-height: 1.7;
  margin-bottom: 36px;
}

/* ── Map ── */
.map-section {
  background: #e8e0dc;
}

.map-section iframe {
  display: block;
  width: 100%;
  height: 380px;
  filter: saturate(0.7) contrast(1.05);
}

/* ── Footer ── */
.footer {
  background: #361017;
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 0;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 0.925rem;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 280px;
}

.footer-contact-mini {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-contact-mini a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}

.footer-contact-mini a:hover {
  color: #ffd0d9;
}

.footer-heading {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 20px;
}

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

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s, padding-left 0.2s;
}

.footer-links a:hover {
  color: #ffd0d9;
  padding-left: 4px;
}

.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;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}

.footer-bottom a:hover {
  color: #ffd0d9;
}

/* ── Scroll Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ── Responsive ── */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

  .nav-toggle {
    display: block;
  }

  .hero-title {
    font-size: clamp(2.2rem, 8vw, 3.2rem);
  }

  .hero-trust {
    gap: 20px;
  }

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

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

  .about-img-secondary img {
    width: 160px;
    height: 160px;
  }

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

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

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

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

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

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

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

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }

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

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

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

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

  .about-stats {
    flex-direction: column;
    gap: 20px;
  }

  .contact-form-card {
    padding: 24px;
  }
}
