:root {
  --radius: 1.25rem;
  --radius-3xl: 2.5rem;

  --blush: #f8e8ee;
  --rose: #e8c5d0;
  --lavender: #c9a0dc;
  --plum: #9b72cf;
  --cream: #fbf7f5;

  --background: #fbf5f7;
  --foreground: #3d2c42;
  --card: #ffffff;
  --card-foreground: #3d2c42;
  --primary: #9b72cf;
  --primary-foreground: #fffafa;
  --secondary: #f8e8ee;
  --secondary-foreground: #4a3658;
  --muted: #f6eef4;
  --muted-foreground: #7d6a82;
  --accent: #c9a0dc;
  --accent-foreground: #2a1d33;
  --destructive: #d94e4e;
  --destructive-foreground: #ffffff;
  --border: #e8dde6;
  --input: #efe6ef;
  --ring: #9b72cf;

  --gradient-soft: linear-gradient(135deg, var(--blush), var(--lavender));
  --gradient-warm: linear-gradient(160deg, #f5e6e8, var(--blush));
  --shadow-soft: 0 20px 50px -20px rgba(155, 114, 207, 0.25);
  --shadow-card: 0 10px 30px -15px rgba(155, 114, 207, 0.2);
}

* {
  box-sizing: border-box;
  border-color: var(--border);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: var(--background);
  color: var(--foreground);
  font-family: "Cabin", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Abril Fatface", serif;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin: 0;
}

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

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

button, input, textarea, select {
  font: inherit;
}

.container {
  max-width: 80rem;
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

@media (min-width: 1024px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background-color: rgba(251, 245, 247, 0.85);
  border-bottom: 1px solid rgba(232, 221, 230, 0.6);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

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

.logo-icon {
  display: grid;
  place-items: center;
  height: 2.25rem;
  width: 2.25rem;
  border-radius: 1rem;
  background: var(--gradient-soft);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-card);
}

.logo-text {
  font-family: "Abril Fatface", serif;
  font-size: 1.5rem;
  color: var(--foreground);
}

.main-nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 768px) {
  .main-nav {
    display: flex;
  }
}

.nav-link {
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  color: rgba(61, 44, 66, 0.8);
  transition: all 0.2s;
}

.nav-link:hover {
  color: var(--foreground);
  background-color: var(--secondary);
}

.nav-link.active {
  background-color: var(--secondary);
  color: var(--foreground);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  background-color: var(--primary);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-card);
  transition: opacity 0.2s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  opacity: 0.9;
}

.menu-toggle {
  display: grid;
  place-items: center;
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 9999px;
  background-color: var(--secondary);
  color: var(--foreground);
  border: none;
  cursor: pointer;
}

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

.mobile-menu {
  display: none;
  border-top: 1px solid rgba(232, 221, 230, 0.6);
  background-color: var(--background);
  padding: 0.75rem 1.25rem;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu .nav-link {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  margin-bottom: 0.25rem;
}

/* Bento tiles */
.bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .bento-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.bento-tile {
  border-radius: var(--radius-3xl);
  background-color: var(--card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s;
}

.bento-tile-hover:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.bento-tile-link {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  min-height: 180px;
  color: var(--foreground);
}

@media (min-width: 1024px) {
  .bento-tile-link {
    padding: 2rem;
  }
}

.soft-gradient {
  background: var(--gradient-soft);
  color: var(--primary-foreground);
}

.bg-rose {
  background-color: var(--rose);
}

.bg-blush {
  background-color: var(--blush);
}

.bg-card {
  background-color: var(--card);
}

.bg-foreground {
  background-color: var(--foreground);
  color: var(--background);
}

.text-primary {
  color: var(--primary);
}

.text-muted {
  color: var(--muted-foreground);
}

.text-white {
  color: var(--primary-foreground);
}

/* Page layout */
.page-content {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

@media (min-width: 1024px) {
  .page-content {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}

.section-title {
  font-size: 3rem;
  line-height: 1;
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 3.75rem;
  }
}

.section-subtitle {
  margin-top: 1rem;
  color: var(--muted-foreground);
  max-width: 32rem;
}

.section-label {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary);
  font-weight: 500;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 500;
  transition: opacity 0.2s, background 0.2s;
}

.btn-light {
  background-color: var(--card);
  color: var(--foreground);
}

.btn-light:hover {
  opacity: 0.9;
}

.btn-ghost {
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  color: var(--primary-foreground);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-ghost:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

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

@media (min-width: 640px) {
  .btn-full {
    width: auto;
  }
}

/* Hero */
.hero-tile {
  grid-column: span 4;
  grid-row: span 2;
  min-height: 560px;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top right, rgba(61, 44, 66, 0.55), rgba(61, 44, 66, 0.15), transparent);
}

.hero-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: var(--primary-foreground);
}

@media (min-width: 640px) {
  .hero-content {
    padding: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-content {
    padding: 3.5rem;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  align-self: flex-start;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background-color: var(--background);
  color: var(--foreground);
  font-size: 0.75rem;
  font-weight: 500;
}

.hero-title {
  font-size: 2.25rem;
  margin-top: 1.25rem;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-text {
  margin-top: 1.25rem;
  max-width: 24rem;
  font-size: 1rem;
  opacity: 0.9;
}

@media (min-width: 640px) {
  .hero-text {
    font-size: 1.125rem;
  }
}

.hero-buttons {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Grid spans */
@media (min-width: 768px) {
  .col-span-2 { grid-column: span 2; }
  .col-span-3 { grid-column: span 3; }
  .col-span-4 { grid-column: span 4; }
  .col-span-6 { grid-column: span 6; }
  .row-span-2 { grid-row: span 2; }
}

/* Cards */
.card-padded {
  padding: 1.5rem;
}

@media (min-width: 1024px) {
  .card-padded {
    padding: 2rem;
  }
}

.card-title {
  font-size: 1.5rem;
  line-height: 1.1;
}

@media (min-width: 1024px) {
  .card-title {
    font-size: 1.875rem;
  }
}

/* Pricing */
.pricing-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pricing-card {
  display: flex;
  flex-direction: column;
  padding: 1.75rem;
  border-radius: var(--radius-3xl);
  box-shadow: var(--shadow-card);
}

@media (min-width: 1024px) {
  .pricing-card {
    padding: 2rem;
  }
}

.price {
  font-family: "Abril Fatface", serif;
  font-size: 3rem;
  line-height: 1;
  margin-top: 1.25rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  font-size: 0.875rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.feature-list svg {
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.hit-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background-color: var(--background);
  color: var(--foreground);
  font-size: 0.75rem;
  font-weight: 500;
}

/* Two column grid */
.two-col-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .two-col-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-3xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

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

/* Forms */
.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-grid-3 {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .form-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="time"],
input[type="number"],
textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 1rem;
  border: 1px solid var(--input);
  background-color: var(--card);
  color: var(--foreground);
  outline: none;
  transition: box-shadow 0.2s, border-color 0.2s;
}

input:focus,
textarea:focus {
  border-color: var(--ring);
  box-shadow: 0 0 0 2px rgba(155, 114, 207, 0.2);
}

textarea {
  resize: none;
}

.error-msg {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.375rem;
  font-size: 0.75rem;
  color: var(--destructive);
}

.success-msg {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--primary);
}

.radio-group {
  display: grid;
  gap: 0.5rem;
}

@media (min-width: 640px) {
  .radio-group {
    grid-template-columns: repeat(3, 1fr);
  }
}

.radio-label {
  display: block;
  cursor: pointer;
}

.radio-label input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.radio-box {
  display: block;
  text-align: center;
  padding: 0.75rem 1rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background-color: var(--card);
  transition: all 0.2s;
}

.radio-label input:checked + .radio-box {
  background-color: var(--primary);
  color: var(--primary-foreground);
  border-color: var(--primary);
}

/* Contact info */
.info-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.info-icon {
  display: grid;
  place-items: center;
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 1rem;
  background-color: var(--secondary);
  color: var(--foreground);
  flex-shrink: 0;
}

.info-title {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  margin: 0;
}

.info-text {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin: 0;
}

/* Map */
.map-frame {
  width: 100%;
  height: 360px;
  border: 0;
}

@media (min-width: 768px) {
  .map-frame {
    height: 460px;
  }
}

/* Footer */
.site-footer {
  margin-top: 6rem;
  border-top: 1px solid rgba(232, 221, 230, 0.6);
  background-color: rgba(248, 232, 238, 0.4);
}

.footer-inner {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .footer-inner {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-title {
  font-size: 1.875rem;
  color: var(--foreground);
}

.footer-text {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  max-width: 20rem;
  margin-top: 0.75rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  font-size: 0.875rem;
}

.footer-links h4 {
  font-size: 0.875rem;
  font-family: "Cabin", sans-serif;
  font-weight: 500;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--muted-foreground);
}

.footer-links a:hover {
  color: var(--foreground);
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-icon {
  display: grid;
  place-items: center;
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 9999px;
  background-color: var(--card);
  color: var(--foreground);
  transition: background-color 0.2s;
}

.social-icon:hover {
  background-color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(232, 221, 230, 0.5);
  padding: 1.25rem;
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* CTA section */
.cta-section {
  margin-top: 4rem;
  margin-bottom: 2rem;
  text-align: center;
}

.cta-title {
  font-size: 2.25rem;
}

@media (min-width: 1024px) {
  .cta-title {
    font-size: 3rem;
  }
}

/* Utility */
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-7 { margin-top: 1.75rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-16 { margin-top: 4rem; }
.mt-24 { margin-top: 6rem; }
.mb-8 { margin-bottom: 2rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

.max-w-xs { max-width: 20rem; }
.max-w-md { max-width: 28rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.justify-between { justify-content: space-between; }
.justify-end { justify-content: flex-end; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-baseline { align-items: baseline; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-10 { gap: 2.5rem; }

.self-start { align-self: flex-start; }
.shrink-0 { flex-shrink: 0; }

.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-5xl { font-size: 3rem; }

.font-medium { font-weight: 500; }
.font-normal { font-weight: 400; }

.uppercase { text-transform: uppercase; }
.tracking-widest { letter-spacing: 0.15em; }

.text-center { text-align: center; }

.rounded-full { border-radius: 9999px; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }

.divide-y > * + * {
  border-top: 1px solid rgba(232, 221, 230, 0.6);
}

.hidden { display: none; }

.w-full { width: 100%; }
.h-4 { height: 1rem; }
.w-4 { width: 1rem; }
.h-5 { height: 1.25rem; }
.w-5 { width: 1.25rem; }
.h-7 { height: 1.75rem; }
.w-7 { width: 1.75rem; }
.h-8 { height: 2rem; }
.w-8 { width: 2rem; }

.svg-icon {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

/* Aspect ratio helpers */
.aspect-4-3 {
  aspect-ratio: 4 / 3;
}
