:root {
  --color-blush: #fad9e6;
  --color-peach: #f7e4c7;
  --color-coral: #e18a7c;
  --color-teal: #5baea0;
  --color-deep: #2f2a2a;
  --color-light: #fffaf6;
  --color-muted: #67605f;
  --shadow-soft: 0 10px 40px rgba(236, 200, 211, 0.45);
  --shadow-card: 0 18px 40px rgba(226, 138, 124, 0.25);
  --gradient-hero: radial-gradient(circle at top left, rgba(250, 217, 230, 0.9), rgba(247, 228, 199, 0.75), #fffaf6 65%);
  --gradient-soft: linear-gradient(180deg, rgba(250, 217, 230, 0.45), rgba(247, 228, 199, 0.35));
  --font-display: "Playfair Display", serif;
  --font-body: "Poppins", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  color: var(--color-deep);
  background: var(--color-light);
  line-height: 1.6;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

.navbar {
  background: rgba(255, 250, 246, 0.88);
  backdrop-filter: blur(14px);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 8px 30px rgba(94, 78, 74, 0.15);
  background: rgba(255, 250, 246, 0.97);
}

.navbar .navbar-brand {
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  color: var(--color-deep);
}

.navbar .nav-link {
  color: var(--color-muted);
  font-weight: 500;
  transition: color 0.2s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
  color: var(--color-coral);
}

.brand-logo {
  height: 52px;
}

.brand-logo.small {
  height: 36px;
}

.hero {
  padding-top: 8rem;
  padding-bottom: 6rem;
  background: var(--gradient-hero);
  overflow: hidden;
}

.hero-badge {
  background: rgba(91, 174, 160, 0.15);
  color: var(--color-teal);
  font-weight: 600;
  letter-spacing: 0.08em;
}

.hero h1 {
  font-family: var(--font-display);
  color: var(--color-deep);
}

.hero-visual {
  min-height: 380px;
}

.hero-card {
  border: none;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-soft);
}

.hero-card .card-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
}

.hero-stats span {
  font-family: var(--font-display);
  color: var(--color-coral);
}

.yarn-orbit {
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(226, 138, 124, 0.35), rgba(250, 217, 230, 0.25));
  top: -120px;
  right: -120px;
  z-index: -1;
  animation: float 9s ease-in-out infinite;
}

.floating-label {
  bottom: 18px;
  right: 24px;
  background: #fff;
  border-radius: 999px;
  padding: 12px 24px;
  font-weight: 600;
  color: var(--color-teal);
  box-shadow: 0 14px 32px rgba(91, 174, 160, 0.2);
}

.section-padding {
  padding: 5rem 0;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--color-deep);
}

.bg-soft {
  background: var(--gradient-soft);
}

.creation-card {
  border: none;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 35px rgba(247, 188, 170, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.creation-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.icon-wrapper {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: rgba(91, 174, 160, 0.12);
  display: grid;
  place-items: center;
  color: var(--color-teal);
  font-size: 1.6rem;
  margin-bottom: 1.3rem;
}

.story-visual {
  min-height: 320px;
}

.story-card {
  border-radius: 28px;
  background: #fff;
  padding: 1px;
  background-image: linear-gradient(135deg, rgba(226, 138, 124, 0.35), rgba(91, 174, 160, 0.35));
}

.story-card-body {
  background: #fff;
  border-radius: 26px;
  padding: 2.5rem;
}

.thread-detail {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 8px dashed rgba(91, 174, 160, 0.35);
  top: -40px;
  right: -80px;
  z-index: -1;
}

.feature-card {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: 0 12px 30px rgba(91, 174, 160, 0.12);
  height: 100%;
}

.process-steps .step-card {
  background: #fff;
  border-radius: 20px;
  padding: 2.2rem 1.6rem 1.8rem;
  border: 1px solid rgba(226, 138, 124, 0.18);
  box-shadow: 0 10px 30px rgba(250, 217, 230, 0.25);
  position: relative;
  overflow: hidden;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(226, 138, 124, 0.12);
  color: var(--color-coral);
  display: grid;
  place-items: center;
  font-weight: 600;
  margin-bottom: 1rem;
}

.gallery-card {
  border-radius: 28px;
  height: 260px;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(94, 78, 74, 0.15);
  background: #fff;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonial-card {
  background: #fff;
  border-radius: 26px;
  padding: 2.4rem;
  border: 1px solid rgba(247, 228, 199, 0.45);
  box-shadow: 0 16px 34px rgba(226, 138, 124, 0.18);
}

.avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(91, 174, 160, 0.16);
  color: var(--color-teal);
  display: grid;
  place-items: center;
  font-weight: 600;
}

.quote-card {
  background: #fff;
  border-radius: 24px;
  padding: 2.4rem;
  border: 1px solid rgba(91, 174, 160, 0.2);
  background-image: linear-gradient(120deg, rgba(91, 174, 160, 0.12), rgba(247, 228, 199, 0.18));
}

.insight-card,
.booking-card {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 28px;
  padding: 2.8rem;
  box-shadow: 0 20px 44px rgba(94, 78, 74, 0.12);
  border: 1px solid rgba(247, 228, 199, 0.4);
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.insight-card::after,
.booking-card::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 24px;
  border: 1px dashed rgba(226, 138, 124, 0.18);
  pointer-events: none;
  z-index: -1;
}

.insight-badge,
.booking-badge {
  background: rgba(91, 174, 160, 0.15);
  color: var(--color-teal);
  letter-spacing: 0.08em;
  font-weight: 600;
}

.booking-card {
  background-image: linear-gradient(140deg, rgba(250, 217, 230, 0.65), rgba(247, 228, 199, 0.45));
  border: 1px solid rgba(226, 138, 124, 0.35);
}

.booking-card::after {
  border-color: rgba(91, 174, 160, 0.22);
}

.inner-hero {
  padding: 6rem 0 3rem;
  background: radial-gradient(circle at top, rgba(250, 217, 230, 0.35), rgba(247, 228, 199, 0.35));
}

.inner-hero .btn {
  margin-top: 1rem;
}

.article-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 16px 36px rgba(94, 78, 74, 0.12);
  border: 1px solid rgba(247, 228, 199, 0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(226, 138, 124, 0.25);
}

.article-card-body {
  padding: 2.2rem;
}

.article-card a {
  color: var(--color-coral);
  font-weight: 600;
}

.empty-state {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 28px;
  box-shadow: 0 20px 44px rgba(94, 78, 74, 0.12);
  border: 1px dashed rgba(226, 138, 124, 0.35);
}

.schedule-card {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 20px 44px rgba(94, 78, 74, 0.12);
  border: 1px solid rgba(247, 228, 199, 0.45);
  min-height: 100%;
}

.timeline {
  margin: 0;
  padding-left: 0;
  border-left: 2px dashed rgba(226, 138, 124, 0.45);
  margin-top: 2rem;
}

.timeline-item {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1.8rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -0.7rem;
  top: 0.35rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-coral);
  box-shadow: 0 0 0 4px rgba(226, 138, 124, 0.15);
}

.timeline-content {
  background: rgba(250, 217, 230, 0.15);
  border-radius: 18px;
  padding: 1.4rem 1.6rem;
  border: 1px solid rgba(226, 138, 124, 0.2);
}

.status-badge {
  background: rgba(91, 174, 160, 0.15);
  color: var(--color-teal);
  font-weight: 600;
}

.status-pending {
  background: rgba(91, 174, 160, 0.15);
}

.status-confirmed {
  background: rgba(91, 174, 160, 0.25);
}

.status-completed {
  background: rgba(226, 138, 124, 0.2);
  color: var(--color-coral);
}

.status-archived {
  background: rgba(103, 96, 95, 0.2);
  color: var(--color-muted);
}

.prose {
  font-size: 1.05rem;
  color: var(--color-deep);
  line-height: 1.8;
  background: #fff;
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 20px 44px rgba(94, 78, 74, 0.12);
  border: 1px solid rgba(247, 228, 199, 0.45);
}

.prose p {
  margin-bottom: 1.2rem;
}

.prose a {
  color: var(--color-coral);
  text-decoration: underline;
}

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

.booking-form .btn-primary {
  min-width: 220px;
}

.admin-card {
  background: #fff;
  border-radius: 24px;
  padding: 2.2rem;
  box-shadow: 0 18px 40px rgba(94, 78, 74, 0.12);
  border: 1px solid rgba(247, 228, 199, 0.45);
}

.admin-list .list-group-item {
  border: none;
  background: rgba(250, 217, 230, 0.18);
  margin-bottom: 0.8rem;
  border-radius: 18px;
  padding: 1.2rem 1.4rem;
}

.admin-list .list-group-item:last-child {
  margin-bottom: 0;
}

.admin-card table {
  border: none;
}

.admin-card table thead th {
  border-bottom: 1px solid rgba(226, 138, 124, 0.25);
  color: var(--color-muted);
}

.admin-card table tbody td {
  border-bottom: 1px solid rgba(250, 217, 230, 0.2);
}

.admin-card form select {
  border-radius: 12px;
}

.admin-card .btn-outline-primary {
  white-space: nowrap;
}

.contact-info a {
  color: var(--color-deep);
}

.contact-card {
  background: #fff;
  border-radius: 24px;
  padding: 2.5rem;
  border: 1px solid rgba(247, 228, 199, 0.45);
  box-shadow: 0 20px 40px rgba(94, 78, 74, 0.12);
}

.contact-card .form-control,
.contact-card .form-select {
  border-radius: 14px;
  border: 1px solid rgba(94, 78, 74, 0.2);
  padding: 0.75rem 1rem;
}

.contact-card .form-control:focus,
.contact-card .form-select:focus {
  border-color: rgba(226, 138, 124, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(226, 138, 124, 0.2);
}

.social-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(226, 138, 124, 0.14);
  color: var(--color-coral);
  transition: transform 0.3s ease, background 0.3s ease;
}

.social-link:hover {
  transform: translateY(-3px);
  background: rgba(91, 174, 160, 0.2);
  color: var(--color-teal);
}

footer {
  background: rgba(255, 255, 255, 0.92);
  border-top: 1px solid rgba(247, 228, 199, 0.7);
}

footer p {
  color: var(--color-muted);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-coral), #f5a89b);
  border: none;
  box-shadow: 0 12px 24px rgba(226, 138, 124, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #d97061, #f5a89b);
}

.btn-outline-primary {
  border-color: rgba(226, 138, 124, 0.6);
  color: var(--color-coral);
}

.btn-outline-primary:hover {
  background: rgba(226, 138, 124, 0.12);
  color: var(--color-coral);
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateY(40px);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(18px) scale(1.02);
  }
}

@media (max-width: 992px) {
  .hero {
    padding-top: 7rem;
    padding-bottom: 4rem;
  }

  .hero-card {
    margin-top: 1.5rem;
  }

  .story-visual {
    min-height: 220px;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 2.3rem;
  }

  .gallery-card {
    height: 220px;
  }

  .brand-logo {
    height: 44px;
  }

  .inner-hero {
    padding: 4.5rem 0 2.5rem;
  }
}
