:root {
  --background: 30 40% 99%;
  --foreground: 340 25% 18%;
  --card: 0 0% 100%;
  --primary: 345 60% 70%;
  --primary-foreground: 0 0% 100%;
  --primary-glow: 340 80% 88%;
  --secondary: 28 45% 92%;
  --muted-foreground: 340 10% 45%;
  --champagne: 38 55% 88%;
  --border: 340 25% 92%;
  --input: 340 25% 92%;
  --ring: 345 60% 70%;
  --gradient-hero: linear-gradient(135deg, hsl(340 80% 96%) 0%, hsl(28 60% 96%) 50%, hsl(345 70% 94%) 100%);
  --gradient-soft: linear-gradient(180deg, hsl(0 0% 100%) 0%, hsl(340 50% 98%) 100%);
  --gradient-rose: linear-gradient(135deg, hsl(345 70% 82%), hsl(340 60% 72%));
  --gradient-text: linear-gradient(135deg, hsl(345 50% 55%), hsl(20 50% 55%));
  --shadow-soft: 0 10px 40px -15px hsl(345 50% 70% / 0.25);
  --shadow-elegant: 0 20px 60px -20px hsl(345 60% 60% / 0.3);
  --shadow-card: 0 4px 24px -8px hsl(340 40% 70% / 0.18);
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; border-color: hsl(var(--border)); }
html { scroll-behavior: smooth; scroll-padding-top: 88px; -webkit-text-size-adjust: 100%; }
body { margin: 0; background: hsl(var(--background)); color: hsl(var(--foreground)); font-family: Inter, sans-serif; }
body { text-rendering: optimizeLegibility; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }
img { display: block; max-width: 100%; }
h1, h2, h3, h4, h5 { font-family: "Playfair Display", serif; letter-spacing: -0.025em; margin: 0; }
p { margin: 0; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.container { width: 100%; max-width: 1280px; margin: 0 auto; padding-left: 1.5rem; padding-right: 1.5rem; }
.min-page { min-height: 100vh; }
.text-gradient { background: var(--gradient-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.italic { font-style: italic; }
.bg-hero-gradient { background: var(--gradient-hero); }
.bg-soft-gradient { background: var(--gradient-soft); }
.bg-secondary-soft { background: hsl(var(--secondary) / 0.4); }
.icon { width: 1.5rem; height: 1.5rem; display: inline-block; vertical-align: middle; }
.icon-sm { width: .875rem; height: .875rem; }

.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 50; transition: var(--transition-smooth); }
.site-header.scrolled { background: hsl(var(--background) / 0.85); backdrop-filter: blur(16px); box-shadow: var(--shadow-card); }
.nav { display: flex; align-items: center; justify-content: space-between; padding-top: 1.25rem; padding-bottom: 1.25rem; }
.brand { font-family: "Playfair Display", serif; font-size: 1.5rem; line-height: 2rem; font-weight: 600; }
.nav-links { display: none; align-items: center; gap: 2.25rem; font-size: .875rem; line-height: 1.25rem; font-weight: 500; }
.nav-links a { color: hsl(var(--foreground) / .8); transition: var(--transition-smooth); }
.nav-links a:hover { color: hsl(var(--primary)); }
.nav-cta { display: none !important; }
.menu-button { background: transparent; border: 0; color: hsl(var(--foreground)); padding: .35rem; display: flex; align-items: center; justify-content: center; }
.menu-button .close-icon { display: none; }
.menu-button.open .menu-icon { display: none; }
.menu-button.open .close-icon { display: inline-block; }
.mobile-menu { display: none; background: hsl(var(--background) / .95); backdrop-filter: blur(16px); border-top: 1px solid hsl(var(--border)); animation: fade-in .6s ease-out; }
.mobile-menu.open { display: block; }
.mobile-menu-list { padding-top: 1.5rem; padding-bottom: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.mobile-menu-list a:not(.btn) { display: block; padding: .5rem 0; color: hsl(var(--foreground) / .8); }
.mobile-menu-list a:not(.btn):hover { color: hsl(var(--primary)); }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; white-space: nowrap; border-radius: 9999px; border: 0; font-size: .875rem; line-height: 1.25rem; font-weight: 500; transition: var(--transition-smooth); }
.btn-sm { height: 2.25rem; padding: 0 1rem; }
.btn-lg { height: 3rem; padding: 0 2rem; font-size: 1rem; }
.btn-xl { height: 3.5rem; padding: 0 2.5rem; font-size: 1rem; }
.btn-hero { background: var(--gradient-rose); color: hsl(var(--primary-foreground)); box-shadow: var(--shadow-soft); }
.btn-hero:hover { box-shadow: var(--shadow-elegant); transform: translateY(-2px); }
.btn-soft { background: hsl(var(--card)); color: hsl(var(--foreground)); border: 1px solid hsl(var(--border)); box-shadow: var(--shadow-card); }
.btn-soft:hover { background: hsl(var(--secondary)); }
.btn.full { width: 100%; }
button.btn:disabled { pointer-events: none; opacity: .5; }

.hero-section { position: relative; min-height: 100vh; display: flex; align-items: center; background: var(--gradient-hero); overflow: hidden; padding-top: 6rem; }
.blur { position: absolute; width: 500px; height: 500px; border-radius: 9999px; filter: blur(64px); pointer-events: none; }
.blur-top-left { top: -10rem; left: -10rem; background: hsl(var(--primary-glow) / .4); }
.blur-bottom-right { bottom: -10rem; right: -10rem; background: hsl(var(--champagne) / .5); }
.hero-grid { position: relative; display: grid; gap: 3rem; align-items: center; padding-top: 4rem; padding-bottom: 4rem; }
.hero-copy { display: flex; flex-direction: column; gap: 1.75rem; }
.eyebrow-pill { display: inline-flex; align-items: center; gap: .5rem; align-self: flex-start; padding: .5rem 1rem; border-radius: 9999px; background: hsl(var(--card) / .7); backdrop-filter: blur(8px); box-shadow: var(--shadow-card); font-size: .75rem; line-height: 1rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: hsl(var(--primary)); }
.hero-copy h1 { font-size: 3rem; line-height: 1.05; font-weight: 600; }
.lead { color: hsl(var(--muted-foreground)); max-width: 36rem; font-size: 1.125rem; line-height: 1.75; }
.button-row { display: flex; flex-wrap: wrap; gap: 1rem; padding-top: .5rem; }
.stats { display: flex; align-items: center; gap: 2rem; padding-top: 1.5rem; flex-wrap: wrap; }
.stat-number { font-family: "Playfair Display", serif; font-size: 1.875rem; line-height: 2.25rem; font-weight: 600; }
.stat-label { color: hsl(var(--muted-foreground)); font-size: .75rem; line-height: 1rem; letter-spacing: .08em; text-transform: uppercase; }
.divider { width: 1px; height: 2.5rem; background: hsl(var(--border)); }
.hero-media { position: relative; }
.image-glow { position: absolute; inset: -1.5rem; background: var(--gradient-rose); opacity: .3; filter: blur(64px); border-radius: 9999px; }
.image-glow.subtle { inset: -1rem; opacity: .2; filter: blur(40px); }
.image-frame { position: relative; overflow: hidden; border-radius: 2rem; box-shadow: var(--shadow-elegant); }
.image-frame img { width: 100%; height: auto; object-fit: cover; }
.hero-image-frame { border-radius: 2rem; }
.premium-card { position: absolute; left: -1.5rem; bottom: -1.5rem; background: hsl(var(--card)); border-radius: 1rem; box-shadow: var(--shadow-elegant); padding: 1.25rem; display: flex; align-items: center; gap: .75rem; }
.premium-icon { width: 3rem; height: 3rem; border-radius: 9999px; background: var(--gradient-rose); color: hsl(var(--primary-foreground)); display: flex; align-items: center; justify-content: center; }
.small-muted { font-size: .75rem; line-height: 1rem; color: hsl(var(--muted-foreground)); }
.premium-year { font-family: "Playfair Display", serif; font-weight: 600; }

.section { padding: 6rem 0; }
.section-head { text-align: center; max-width: 42rem; margin: 0 auto 4rem; display: flex; flex-direction: column; gap: 1rem; }
.section-head > span, .kicker { font-size: .75rem; line-height: 1rem; font-weight: 500; letter-spacing: .25em; text-transform: uppercase; color: hsl(var(--primary)); font-family: Inter, sans-serif; }
.section-head h2, .about-copy h2 { font-size: 2.25rem; line-height: 1.15; font-weight: 600; }
.section-head p, .about-copy p, .service-body p, .feature-card p { color: hsl(var(--muted-foreground)); line-height: 1.625; }

.services-grid, .features-grid, .reviews-grid { display: grid; gap: 1.5rem; }
.service-card { background: hsl(var(--card)); border-radius: 1.5rem; overflow: hidden; box-shadow: var(--shadow-card); transition: var(--transition-smooth); }
.service-card:hover { box-shadow: var(--shadow-elegant); transform: translateY(-.5rem); }
.service-image { aspect-ratio: 4 / 3; overflow: hidden; }
.service-image img, .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: all .7s cubic-bezier(.4,0,.2,1); }
.service-card:hover .service-image img, .gallery-item:hover img { transform: scale(1.1); }
.service-body { padding: 1.75rem; display: flex; flex-direction: column; gap: .75rem; }
.service-title-row { display: flex; align-items: flex-start; justify-content: space-between; gap: .75rem; }
.service-title-row h3 { font-size: 1.5rem; line-height: 2rem; font-weight: 600; }
.service-title-row .arrow { color: hsl(var(--primary)); opacity: 0; transition: var(--transition-smooth); width: 1.25rem; height: 1.25rem; }
.service-card:hover .arrow { opacity: 1; }
.service-body p, .feature-card p { font-size: .875rem; }
.price { padding-top: .5rem; color: hsl(var(--primary)); font-size: .875rem; font-weight: 500; }

.about-grid { display: grid; gap: 4rem; align-items: center; }
.about-media { position: relative; order: 2; }
.about-copy { order: 1; display: flex; flex-direction: column; gap: 1.5rem; }
.experience-card { position: absolute; bottom: -2rem; right: -1rem; background: hsl(var(--card)); border-radius: 1rem; box-shadow: var(--shadow-elegant); padding: 1.5rem; max-width: 220px; color: hsl(var(--muted-foreground)); font-size: .875rem; line-height: 1.45; }
.experience-number { font-family: "Playfair Display", serif; font-size: 2.25rem; line-height: 2.5rem; font-weight: 600; margin-bottom: .25rem; }
.mini-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1rem; padding-top: .5rem; }
.mini-grid div { background: hsl(var(--secondary) / .6); border-radius: 1rem; padding: 1.25rem; }
.mini-grid h3 { font-size: 1.5rem; line-height: 2rem; font-weight: 600; margin-bottom: .25rem; }
.mini-grid p { font-size: .875rem; }
.about-copy .btn { align-self: flex-start; margin-top: .5rem; }

.feature-card { background: hsl(var(--card)); border-radius: 1.5rem; padding: 2rem; box-shadow: var(--shadow-card); transition: var(--transition-smooth); }
.feature-card:hover { box-shadow: var(--shadow-elegant); transform: translateY(-.25rem); }
.feature-icon { width: 3.5rem; height: 3.5rem; border-radius: 1rem; background: var(--gradient-rose); color: hsl(var(--primary-foreground)); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; transition: var(--transition-smooth); }
.feature-card:hover .feature-icon { transform: scale(1.1); }
.feature-card h3 { font-size: 1.25rem; line-height: 1.75rem; font-weight: 600; margin-bottom: .5rem; }

.gallery-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); grid-auto-rows: 180px; gap: 1rem; }
.gallery-item { position: relative; border-radius: 1.5rem; overflow: hidden; box-shadow: var(--shadow-card); cursor: pointer; }
.row-span-2 { grid-row: span 2 / span 2; }
.gallery-item > div { position: absolute; inset: 0; background: linear-gradient(to top, hsl(var(--foreground) / .4), transparent); opacity: 0; transition: var(--transition-smooth); }
.gallery-item:hover > div { opacity: 1; }

.review-card { background: hsl(var(--card)); border-radius: 1.5rem; padding: 2rem; box-shadow: var(--shadow-card); transition: var(--transition-smooth); position: relative; }
.review-card:hover { box-shadow: var(--shadow-elegant); }
.review-card .quote { position: absolute; top: 1.5rem; right: 1.5rem; width: 2.5rem; height: 2.5rem; color: hsl(var(--primary) / .15); }
.stars { display: flex; gap: .25rem; margin-bottom: 1rem; }
.stars svg { width: 1rem; height: 1rem; color: hsl(var(--primary)); }
.review-card > p { color: hsl(var(--foreground) / .85); line-height: 1.625; margin-bottom: 1.5rem; font-style: italic; }
.review-author { display: flex; align-items: center; gap: .75rem; padding-top: 1rem; border-top: 1px solid hsl(var(--border)); }
.review-author > div:first-child { width: 2.75rem; height: 2.75rem; border-radius: 9999px; background: var(--gradient-rose); color: hsl(var(--primary-foreground)); display: flex; align-items: center; justify-content: center; font-family: "Playfair Display", serif; font-weight: 600; }
.review-author strong { display: block; font-weight: 500; }
.review-author span { display: block; color: hsl(var(--muted-foreground)); font-size: .75rem; line-height: 1rem; }

.contact-grid { display: grid; gap: 2rem; }
.booking-form { background: hsl(var(--card)); border-radius: 1.5rem; padding: 2rem; box-shadow: var(--shadow-card); display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; gap: 1.25rem; }
.booking-form label { display: flex; flex-direction: column; gap: .5rem; font-size: .875rem; font-weight: 500; }
.booking-form input, .booking-form select, .booking-form textarea { width: 100%; border: 1px solid hsl(var(--input)); background: hsl(var(--background)); color: hsl(var(--foreground)); border-radius: .375rem; padding: .5rem .75rem; font-size: .875rem; outline: none; transition: box-shadow .2s, border-color .2s; }
.booking-form input, .booking-form select { height: 2.5rem; }
.booking-form textarea { resize: vertical; min-height: 104px; }
.booking-form input:focus, .booking-form select:focus, .booking-form textarea:focus { box-shadow: 0 0 0 2px hsl(var(--ring)); }
.contact-info { display: flex; flex-direction: column; gap: 1.25rem; }
.info-card { background: hsl(var(--card)); border-radius: 1rem; padding: 1.5rem; box-shadow: var(--shadow-card); display: flex; gap: 1rem; transition: var(--transition-smooth); }
.info-card:hover { box-shadow: var(--shadow-elegant); }
.info-card > div:first-child { width: 3rem; height: 3rem; border-radius: .75rem; background: var(--gradient-rose); color: hsl(var(--primary-foreground)); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.info-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: .25rem; }
.info-card p { color: hsl(var(--muted-foreground)); font-size: .875rem; line-height: 1.25rem; }

.site-footer { background: hsl(var(--foreground)); color: hsl(var(--background) / .9); padding-top: 4rem; padding-bottom: 2rem; }
.footer-grid { display: grid; gap: 2.5rem; margin-bottom: 3rem; }
.footer-about { display: flex; flex-direction: column; gap: 1rem; }
.footer-brand { font-family: "Playfair Display", serif; font-size: 1.875rem; line-height: 2.25rem; font-weight: 600; color: hsl(var(--background)); }
.footer-about p { color: hsl(var(--background) / .6); max-width: 28rem; line-height: 1.625; }
.social-links { display: flex; gap: .75rem; padding-top: .5rem; }
.social-links a { width: 2.5rem; height: 2.5rem; border-radius: 9999px; background: hsl(var(--background) / .1); display: flex; align-items: center; justify-content: center; transition: var(--transition-smooth); }
.social-links a:hover { background: var(--gradient-rose); }
.social-links .icon { width: 1rem; height: 1rem; }
.site-footer h4 { color: hsl(var(--background)); font-size: 1.125rem; margin-bottom: 1rem; }
.site-footer li { color: hsl(var(--background) / .6); font-size: .875rem; line-height: 1.25rem; margin-bottom: .5rem; }
.site-footer a:hover { color: hsl(var(--background)); transition: var(--transition-smooth); }
.footer-bottom { border-top: 1px solid hsl(var(--background) / .1); padding-top: 1.5rem; display: flex; flex-direction: column; justify-content: space-between; gap: .75rem; color: hsl(var(--background) / .5); font-size: .75rem; }
.footer-credit { display: inline-flex; align-items: center; justify-content: flex-start; gap: .2rem; flex-wrap: wrap; }
.footer-credit span { color: hsl(var(--background) / .55); }
.footer-credit-link { display: inline-flex; align-items: center; color: hsl(var(--background) / .82); font-weight: 600; transition: var(--transition-smooth); }
.footer-credit-link:hover { color: hsl(var(--background)); text-decoration: underline; text-underline-offset: 2px; transform: translateY(-1px); }
.toast { position: fixed; right: 1rem; bottom: 1rem; z-index: 80; max-width: calc(100% - 2rem); background: hsl(var(--foreground)); color: hsl(var(--background)); border-radius: .875rem; box-shadow: var(--shadow-elegant); padding: .9rem 1rem; transform: translateY(1rem); opacity: 0; pointer-events: none; transition: var(--transition-smooth); }
.toast.show { transform: translateY(0); opacity: 1; }

@keyframes fade-in { 0% { opacity: 0; transform: translateY(20px); } 100% { opacity: 1; transform: translateY(0); } }
@keyframes fade-in-up { 0% { opacity: 0; transform: translateY(40px); } 100% { opacity: 1; transform: translateY(0); } }
@keyframes scale-in { 0% { opacity: 0; transform: scale(.95); } 100% { opacity: 1; transform: scale(1); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.animate-fade-in-up { animation: fade-in-up .8s ease-out; }
.animate-scale-in { animation: scale-in .5s ease-out; }
.animate-float { animation: float 6s ease-in-out infinite; }

@media (min-width: 640px) {
  .hero-copy h1 { font-size: 3.75rem; }
  .footer-credit { justify-content: flex-end; }
  .form-row { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .footer-bottom { flex-direction: row; }
  .gallery-grid { grid-auto-rows: 220px; }
  .services-grid, .features-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex !important; }
  .menu-button { display: none; }
  .mobile-menu { display: none !important; }
  .reviews-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .footer-grid { grid-template-columns: repeat(4, minmax(0,1fr)); }
  .footer-about { grid-column: span 2 / span 2; }
}
@media (min-width: 1024px) {
  .section { padding: 8rem 0; }
  .hero-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .hero-copy h1 { font-size: 4.5rem; }
  .section-head h2, .about-copy h2 { font-size: 3rem; }
  .services-grid, .features-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .gallery-grid { grid-template-columns: repeat(4, minmax(0,1fr)); }
  .about-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .about-media { order: 1; }
  .about-copy { order: 2; }
  .experience-card { right: -2rem; }
  .contact-grid { grid-template-columns: repeat(5, minmax(0,1fr)); }
  .booking-form { grid-column: span 3 / span 3; padding: 2.5rem; }
  .contact-info { grid-column: span 2 / span 2; }
}
@media (max-width: 639px) {
  .container { padding-left: 1rem; padding-right: 1rem; }
  .hero-copy h1 { font-size: 2.5rem; }
  .button-row { flex-direction: column; }
  .button-row .btn { width: 100%; }
  .stats { gap: 1rem; }
  .divider { display: none; }
  .premium-card { left: .75rem; bottom: -2rem; }
  .booking-form { padding: 1.5rem; }
  .booking-form input, .booking-form select, .booking-form textarea { font-size: 16px; }
  .gallery-grid { grid-auto-rows: 150px; }
  .mini-grid { grid-template-columns: 1fr; }
}
@media (max-width: 479px) {
  .nav { padding-top: 1rem; padding-bottom: 1rem; }
  .lead { font-size: 1rem; line-height: 1.65; }
  .premium-card { max-width: calc(100% - 1.5rem); }
}
