/* Font declarations */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300..900;1,9..144,300..900&family=Quicksand:wght@400;500;600;700;800&display=swap');

:root {
  --font-serif: "Fraunces", "Georgia", serif;
  --font-sans: "Quicksand", "Inter", system-ui, sans-serif;
  --color-brand-accent: #E65F93;
  --color-brand-accent-dark: #DE437D;
  --color-brand-bg: #FCFAF9;
  --color-brand-panel: #FFF0F4;
  --color-brand-cream: #FFF5F7;
  --color-brand-text: #3D2E33;
  --color-brand-muted: #6B555D;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-brand-bg);
  color: var(--color-brand-text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
  letter-spacing: 0.025em; /* tracking-wide */
}

/* Custom selections */
::selection {
  background-color: var(--color-brand-accent);
  color: white;
}

/* Background dots accent */
.bg-decor-dots {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 450px;
  background-image: radial-gradient(var(--color-brand-accent) 1.2px, transparent 1.2px);
  background-size: 20px 20px;
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
}

/* Header style */
header {
  border-bottom: 1px solid var(--color-brand-panel);
  background-color: rgba(252, 250, 249, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 40;
}

.header-container {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-container img {
  height: 4rem;
  width: 4rem;
  border-radius: 1rem;
  object-fit: contain;
  border: 1px solid rgba(230, 95, 147, 0.2);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  background-color: white;
  padding: 0.25rem;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  cursor: pointer;
}

.logo-container img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.instagram-header-btn {
  padding: 0.5rem;
  color: var(--color-brand-muted);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 9999px;
  transition: all 0.3s ease;
}

.instagram-header-btn:hover {
  color: var(--color-brand-accent);
  background-color: var(--color-brand-panel);
}

.instagram-header-btn svg {
  color: var(--color-brand-accent);
}

.wsp-header-btn {
  padding: 0.5rem 1rem;
  background-color: #25D366;
  color: white;
  text-decoration: none;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.wsp-header-btn:hover {
  transform: scale(1.03);
  background-color: #1eba54;
}

.wsp-header-btn:active {
  transform: scale(0.95);
}

/* Pulsing badge wrapper */
.pulse-indicator {
  position: relative;
  display: flex;
  height: 0.625rem;
  width: 0.625rem;
}

.pulse-indicator .ping {
  position: absolute;
  display: inline-flex;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  background-color: white;
  opacity: 0.75;
  animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.pulse-indicator .dot {
  position: relative;
  display: inline-flex;
  border-radius: 50%;
  height: 0.625rem;
  width: 0.625rem;
  background-color: #f0fdf4;
}

/* Grid layout & columns */
main {
  max-width: 1024px;
  margin: 0 auto;
  padding: 2.5rem 1rem 4rem 1rem;
  position: relative;
  z-index: 10;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

/* Brand Philosophy Column */
.philosophy-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
}

.welcome-badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  background-color: var(--color-brand-panel);
  border: 1px solid rgba(230, 95, 147, 0.1);
  border-radius: 9999px;
  color: var(--color-brand-accent);
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.welcome-badge svg {
  animation: pulse-animation 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.philosophy-title {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: 2.25rem;
  color: var(--color-brand-text);
  line-height: 1.2;
}

.philosophy-title span.accent {
  color: var(--color-brand-accent);
  font-style: italic;
}

.philosophy-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.625;
  color: var(--color-brand-text);
  border-left: 3px solid var(--color-brand-accent);
  padding-left: 1rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.philosophy-desc {
  color: var(--color-brand-muted);
  font-size: 0.875rem;
  line-height: 1.625;
  font-weight: 500;
}

.action-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1rem;
}

.primary-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background-color: #25D366;
  color: white;
  text-decoration: none;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.primary-action-btn:hover {
  background-color: #1eba54;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(37, 211, 102, 0.2);
}

.primary-action-btn:active {
  transform: translateY(0);
}

.primary-action-btn .icon-bg {
  background-color: rgba(255, 255, 255, 0.2);
  padding: 0.375rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-text {
  text-align: left;
  line-height: 1.25;
}

.btn-text .sub {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #E8FCD0;
  display: block;
  font-weight: 800;
}

.btn-text .main-lbl {
  font-size: 0.875rem;
  font-weight: 700;
  display: block;
}

.secondary-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  border: 1px solid var(--color-brand-accent);
  color: var(--color-brand-accent);
  background-color: var(--color-brand-bg);
  text-decoration: none;
  border-radius: 1rem;
  transition: all 0.3s ease;
}

.secondary-action-btn:hover {
  background-color: var(--color-brand-panel);
  transform: translateY(-2px);
}

.secondary-action-btn:active {
  transform: translateY(0);
}

.secondary-action-btn .icon-bg {
  background-color: rgba(230, 95, 147, 0.1);
  padding: 0.375rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.secondary-action-btn .btn-text .sub {
  color: var(--color-brand-muted);
}

.secondary-action-btn .btn-text .main-lbl {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
}

/* Hero Image Column */
.hero-image-col {
  position: relative;
  opacity: 0;
  transform: scale(0.98);
}

.border-corner-tl {
  position: absolute;
  top: -0.75rem;
  left: -0.75rem;
  width: 2rem;
  height: 2rem;
  border-top: 2px solid rgba(230, 95, 147, 0.35);
  border-left: 2px solid rgba(230, 95, 147, 0.35);
  pointer-events: none;
}

.border-corner-br {
  position: absolute;
  bottom: -0.75rem;
  right: -0.75rem;
  width: 2rem;
  height: 2rem;
  border-bottom: 2px solid rgba(230, 95, 147, 0.35);
  border-right: 2px solid rgba(230, 95, 147, 0.35);
  pointer-events: none;
}

.bg-blur-circle {
  position: absolute;
  top: 25%;
  right: -2.5rem;
  width: 11rem;
  height: 11rem;
  background-color: var(--color-brand-panel);
  border-radius: 50%;
  filter: blur(40px);
  z-index: -10;
  pointer-events: none;
}

.image-card-wrapper {
  border: 4px solid white;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background-color: var(--color-brand-panel);
  position: relative;
}

.image-card-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.image-card-wrapper:hover img {
  transform: scale(1.03);
}

.gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(61, 46, 51, 0.75) 0%, rgba(61, 46, 51, 0) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
}

.overlay-details-card {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 0.75rem;
  padding: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--color-brand-panel);
}

.overlay-details-card .card-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.25rem;
}

.overlay-details-card .location-lbl {
  font-size: 0.5625rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-brand-accent);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.overlay-details-card .tag-lbl {
  padding: 0.125rem 0.5rem;
  background-color: var(--color-brand-panel);
  color: var(--color-brand-accent);
  font-size: 0.5625rem;
  font-weight: 700;
  border-radius: 0.25rem;
}

.overlay-details-card h3 {
  font-family: var(--font-serif);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-brand-text);
  margin: 0;
}

.overlay-details-card p {
  font-size: 0.6875rem;
  color: var(--color-brand-muted);
  margin-top: 0.125rem;
  line-height: 1.5;
}

/* Floating widgets */
.floating-badge-tr {
  position: absolute;
  top: -0.625rem;
  right: -0.625rem;
  background-color: var(--color-brand-accent);
  color: white;
  font-weight: 900;
  font-size: 0.5625rem;
  padding: 0.375rem 0.875rem;
  border-radius: 9999px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.floating-badge-bl {
  position: absolute;
  bottom: -0.75rem;
  left: -0.75rem;
  background-color: var(--color-brand-bg);
  color: var(--color-brand-accent);
  font-weight: 600;
  font-size: 0.625rem;
  padding: 0.375rem 0.875rem;
  border-radius: 9999px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  border: 1px solid var(--color-brand-panel);
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.floating-badge-bl .green-ping {
  height: 0.5rem;
  width: 0.5rem;
  background-color: #25D366;
  border-radius: 50%;
  position: relative;
  display: inline-block;
}

.floating-badge-bl .green-ping::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #25D366;
  opacity: 0.75;
  animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

/* Showcase Section */
.showcase-sec {
  margin-top: 4rem;
  background-color: var(--color-brand-cream);
  color: var(--color-brand-text);
  border-radius: 1.5rem;
  padding: 1.5rem;
  border: 1px solid rgba(230, 95, 147, 0.1);
  position: relative;
  overflow: hidden;
}

.showcase-bg-circle {
  position: absolute;
  right: -5rem;
  top: -5rem;
  width: 20rem;
  height: 20rem;
  background-color: rgba(255, 240, 244, 0.4);
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
  z-index: 1;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 10;
}

.showcase-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.showcase-badge {
  font-size: 0.5625rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-brand-accent);
  background-color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  border: 1px solid var(--color-brand-panel);
  display: inline-block;
  align-self: flex-start;
  letter-spacing: 0.05em;
}

.showcase-title {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--color-brand-text);
  line-height: 1.35;
}

.showcase-desc {
  font-size: 0.75rem;
  color: var(--color-brand-muted);
  line-height: 1.625;
  max-width: 36rem;
}

/* Progress Checklist widget */
.progress-widget {
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 1.25rem;
  border-radius: 1rem;
  border: 1px solid var(--color-brand-panel);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.progress-widget h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-brand-accent);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
}

.progress-widget svg.spin-slow {
  animation: spin 8s linear infinite;
}

.step-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
}

.step-item.muted {
  opacity: 0.4;
}

.bubble-check {
  width: 1.25rem;
  height: 1.25rem;
  background-color: rgba(230, 95, 147, 0.1);
  color: var(--color-brand-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.bubble-progress {
  width: 1.25rem;
  height: 1.25rem;
  background-color: rgba(234, 179, 8, 0.1);
  color: #ca8a04;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.bubble-progress .yellow-dot {
  width: 0.375rem;
  height: 0.375rem;
  background-color: #eab308;
  border-radius: 50%;
  animation: pulse-animation 2s infinite;
}

.bubble-number {
  width: 1.25rem;
  height: 1.25rem;
  background-color: #e7e5e4;
  color: #78716c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.125rem;
  font-size: 0.5625rem;
  font-weight: 700;
}

.step-details {
  display: flex;
  flex-direction: column;
}

.step-details .step-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-brand-text);
  display: block;
}

.step-details .step-desc {
  font-size: 0.625rem;
  color: var(--color-brand-muted);
  display: block;
  margin-top: 0.125rem;
}

/* Footer Section */
footer {
  background-color: rgba(255, 240, 244, 0.45);
  border-top: 1px solid var(--color-brand-panel);
  padding: 3rem 0;
  color: var(--color-brand-muted);
}

.footer-container {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  text-align: center;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo img {
  height: 4rem;
  width: 4rem;
  border-radius: 0.75rem;
  object-fit: contain;
  border: 1px solid rgba(230, 95, 147, 0.15);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  background-color: white;
  padding: 0.25rem;
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.footer-contacts .hdr {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-brand-accent);
}

.contact-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
}

.contact-links a {
  color: var(--color-brand-text);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-links a:hover {
  color: var(--color-brand-accent);
}

.contact-links .instagram-link {
  font-family: var(--font-serif);
  font-style: italic;
}

.contact-links .wsp-link {
  font-weight: 600;
}

.copyright-block {
  margin-top: 0.5rem;
  border-top: 1px solid rgba(230, 95, 147, 0.1);
  width: 100%;
  padding-top: 0.5rem;
}

.copyright-block span {
  font-size: 0.625rem;
  color: rgba(107, 85, 93, 0.75);
  display: block;
}

.copyright-block span + span {
  margin-top: 0.125rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes pulse-animation {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: .5;
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Class-based transitions */
.animate-fade-in-up {
  animation: fadeInUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-scale-in {
  animation: fadeInUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-100 {
  animation-delay: 100ms;
}

/* Responsive design media queries */
@media (min-width: 640px) {
  .logo-container img {
    height: 5rem;
    width: 5rem;
  }
  
  .header-actions {
    gap: 1rem;
  }

  .instagram-header-btn {
    font-size: 0.875rem;
  }

  .wsp-header-btn {
    font-size: 0.875rem;
  }
  
  .philosophy-title {
    font-size: 3rem;
  }

  .philosophy-quote {
    font-size: 1.25rem;
  }

  .philosophy-desc {
    font-size: 1rem;
  }

  .action-buttons {
    flex-direction: row;
  }

  .showcase-sec {
    padding: 2.5rem;
  }

  .showcase-title {
    font-size: 1.875rem;
  }

  .showcase-desc {
    font-size: 0.875rem;
  }
}

@media (min-width: 768px) {
  .footer-container {
    grid-template-columns: repeat(12, 1fr);
    text-align: left;
  }

  .footer-logo {
    grid-column: span 4;
    align-items: flex-start;
  }

  .footer-contacts {
    grid-column: span 8;
    align-items: flex-end;
  }

  .contact-links {
    align-items: flex-end;
  }

  .copyright-block {
    text-align: right;
  }
}

@media (min-width: 1024px) {
  main {
    padding-top: 2.5rem;
    padding-bottom: 4rem;
  }

  .hero-grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 3.5rem;
  }

  .philosophy-col {
    grid-column: span 7;
  }

  .hero-image-col {
    grid-column: span 5;
  }

  .philosophy-title {
    font-size: 3.75rem;
  }

  .showcase-grid {
    grid-template-columns: repeat(12, 1fr);
  }

  .showcase-content {
    grid-column: span 8;
  }

  .progress-widget {
    grid-column: span 4;
  }
}

/* Lucide Icons Custom Sizes */
.welcome-badge svg,
.location-lbl svg,
.floating-badge-tr svg {
  width: 0.875rem;
  height: 0.875rem;
  stroke-width: 2.5;
}

.wsp-header-btn svg {
  width: 1.125rem;
  height: 1.125rem;
  stroke-width: 2.5;
}

.instagram-header-btn svg {
  width: 1.125rem;
  height: 1.125rem;
}

.primary-action-btn svg,
.secondary-action-btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

.floating-badge-bl svg {
  width: 0.75rem;
  height: 0.75rem;
}

.progress-widget h4 svg {
  width: 1rem;
  height: 1rem;
}

.bubble-check svg {
  width: 0.875rem;
  height: 0.875rem;
}

