:root {
  /* Palette extracted from the logo */
  --bg: #8B6914; /* Rich golden brown from logo background */
  --text: #2E1F18; /* Deep brown for readable text */
  --primary: #E6D4A8; /* Warm cream gold from lotus */
  --accent: #B8935C; /* Medium golden tone */
  --highlight: #D4B87C; /* Lighter gold highlight */
  --card: #FFF9ED; /* Warm off-white with golden tint */
  --border: rgba(139, 105, 20, 0.2);
  --shadow: 0 8px 28px rgba(139, 105, 20, 0.25);
  --muted: #6B5530; /* Muted brown for secondary text */
  --primary-contrast: #2E1F18; /* Dark text for buttons */
  --overlay-dark: rgba(43, 24, 8, 0.85);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  padding-top: 104px;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: "Playfair Display", Georgia, serif;
  margin: 0 0 12px;
  line-height: 1.2;
}
p { margin: 0 0 16px; }

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(139, 105, 20, 0.95), rgba(184, 147, 92, 0.95));
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 2px solid var(--primary);
  box-shadow: 0 4px 16px rgba(139, 105, 20, 0.3);
  z-index: 50;
  transition: transform 0.3s ease;
}
.site-header.hidden {
  transform: translateY(-100%);
}
.header-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
}
.logo {
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  color: var(--primary);
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}
.logo:hover {
  transform: translateX(4px);
}
.logo img {
  height: 80px;
  width: auto;
  margin-right: 16px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(230, 212, 168, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid var(--primary);
}
.logo:hover img {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(230, 212, 168, 0.6);
}
.site-title {
  color: var(--primary);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.1rem;
}
.nav { display: none; gap: 20px; align-items: center; }
.nav a {
  text-decoration: none;
  color: var(--primary);
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  transition: color 0.3s ease;
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}
.nav a:hover {
  color: var(--card);
}
.nav a:hover::after {
  width: 100%;
}
.nav.open { display: flex; }

/* Mobile dropdown for the nav when opened */
@media (max-width: 879px) {
  .header-inner { position: relative; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 8px);
    right: 12px;
    left: 12px;
    background: linear-gradient(135deg, rgba(139, 105, 20, 0.98), rgba(184, 147, 92, 0.98));
    padding: 16px;
    border-radius: 12px;
    border: 2px solid var(--primary);
    box-shadow: 0 8px 32px rgba(139, 105, 20, 0.5);
    z-index: 60;
    gap: 8px;
  }
  .nav a { display: block; padding: 12px 16px; border-radius: 8px; }
  .nav a:hover { background: rgba(230, 212, 168, 0.15); }
  .nav a.btn { display: block; text-align: center; }
}
.nav-toggle {
  border: none;
  background: transparent;
  font-size: 24px;
  cursor: pointer;
  color: var(--primary);
  transition: transform 0.2s ease;
}
.nav-toggle:hover {
  transform: scale(1.1);
}
@media (min-width: 880px) {
  .nav { display: flex; }
  .nav-toggle { display: none; }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}
.btn:hover::before {
  width: 300px;
  height: 300px;
}
.btn:active { transform: translateY(2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--highlight));
  color: var(--primary-contrast);
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(230, 212, 168, 0.4);
}
.btn-primary:hover {
  box-shadow: 0 6px 24px rgba(230, 212, 168, 0.6);
  transform: translateY(-2px);
}
.btn-outline {
  color: var(--primary);
  background: transparent;
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--primary-contrast);
  transform: translateY(-2px);
}
.btn-light {
  background: var(--card);
  color: var(--primary-contrast);
  border-color: var(--card);
  box-shadow: 0 4px 16px rgba(255, 249, 237, 0.3);
}
.btn-light:hover {
  box-shadow: 0 6px 24px rgba(255, 249, 237, 0.5);
  transform: translateY(-2px);
}
.btn-language {
  background: rgba(255, 249, 237, 0.15);
  color: var(--card);
  border: 2px solid rgba(230, 212, 168, 0.4);
  backdrop-filter: blur(10px);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 16px;
  transition: all 0.3s ease;
}
.btn-language:hover {
  background: rgba(230, 212, 168, 0.3);
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(230, 212, 168, 0.5);
  transform: translateY(-2px);
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--bg) 0%, var(--accent) 50%, var(--highlight) 100%);
  padding: 80px 0 64px;
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}
.hero-background-animation {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(230, 212, 168, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(184, 147, 92, 0.15) 0%, transparent 50%);
  animation: heroFloat 20s ease-in-out infinite;
  pointer-events: none;
}
@keyframes heroFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -20px) scale(1.05); }
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, rgba(230, 212, 168, 0.25), rgba(255, 249, 237, 0.15));
  border: 2px solid var(--primary);
  border-radius: 50px;
  color: var(--card);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(230, 212, 168, 0.3);
  animation: badgePulse 3s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { transform: scale(1); box-shadow: 0 4px 16px rgba(230, 212, 168, 0.3); }
  50% { transform: scale(1.05); box-shadow: 0 6px 24px rgba(230, 212, 168, 0.5); }
}
.hero-content h1 {
  color: var(--card);
  font-size: 2.8rem;
  margin-bottom: 24px;
  text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.4);
  line-height: 1.15;
  animation: slideInUp 0.8s ease-out;
}
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-content p {
  color: var(--card);
  font-size: 1.25rem;
  line-height: 1.8;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.3);
  margin-bottom: 32px;
  max-width: 540px;
  animation: slideInUp 0.8s ease-out 0.2s both;
}
.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
  animation: slideInUp 0.8s ease-out 0.4s both;
}
.btn-pulse {
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(230, 212, 168, 0.4); }
  50% { box-shadow: 0 8px 32px rgba(230, 212, 168, 0.7), 0 0 0 8px rgba(230, 212, 168, 0.2); }
}
.hero-highlights {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  animation: slideInUp 0.8s ease-out 0.6s both;
}
.hero-highlights li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(230, 212, 168, 0.2), rgba(255, 249, 237, 0.1));
  border: 2px solid rgba(230, 212, 168, 0.3);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.hero-highlights li:hover {
  transform: translateX(8px);
  background: linear-gradient(135deg, rgba(230, 212, 168, 0.3), rgba(255, 249, 237, 0.2));
  border-color: var(--primary);
  box-shadow: 0 6px 20px rgba(230, 212, 168, 0.4);
}
.highlight-icon {
  font-size: 2rem;
  flex-shrink: 0;
  filter: drop-shadow(2px 2px 6px rgba(0, 0, 0, 0.3));
}
.hero-highlights strong {
  display: block;
  color: var(--card);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.hero-highlights small {
  display: block;
  color: rgba(255, 249, 237, 0.85);
  font-size: 0.9rem;
}
.hero-image-wrapper {
  position: relative;
  animation: slideInRight 0.8s ease-out 0.3s both;
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.hero-image {
  background-image: url('https://images.unsplash.com/photo-1544161515-4ab6ce6db874?q=80&w=1600&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  height: 380px;
  border-radius: 24px;
  box-shadow: 0 16px 48px rgba(139, 105, 20, 0.5);
  border: 4px solid var(--primary);
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
}
.hero-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(139, 105, 20, 0.15), rgba(230, 212, 168, 0.1));
  transition: opacity 0.5s ease;
}
.hero-image-wrapper:hover .hero-image {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(139, 105, 20, 0.6);
}
.hero-image-wrapper:hover .hero-image::after {
  opacity: 0.5;
}
@media (min-width: 960px) {
  .hero-grid { grid-template-columns: 1.15fr 0.85fr; gap: 64px; }
  .hero-image { height: 480px; }
  .hero-content h1 { font-size: 3.8rem; }
  .hero-highlights { grid-template-columns: 1fr; }
}
@media (max-width: 959px) {
  .hero { min-height: auto; padding: 48px 0; }
  .hero-content h1 { font-size: 2.2rem; }
  .hero-content p { font-size: 1.1rem; }
  .hero-image { height: 280px; }
}

/* Sections */
.section {
  padding: 64px 0;
  background: var(--card);
}
.section.alt {
  background: linear-gradient(180deg, rgba(230, 212, 168, 0.15), rgba(255, 249, 237, 0.5));
}
.section h2 {
  margin-bottom: 16px;
  color: var(--bg);
  font-size: 2.5rem;
  text-align: center;
  position: relative;
  padding-bottom: 16px;
}
.section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.section-intro {
  color: var(--muted);
  max-width: 60ch;
  margin: 0 auto 32px;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.8;
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
.about-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(139, 105, 20, 0.3);
  border: 4px solid var(--accent);
}
.about-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(139, 105, 20, 0.15), transparent);
  z-index: 1;
  pointer-events: none;
}
.about-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 550px;
  transition: transform 0.5s ease;
}
.about-image:hover img {
  transform: scale(1.05);
}
.about-content h2 {
  margin-bottom: 20px;
  color: var(--bg);
  text-align: left;
}
.about-content h2::after {
  left: 0;
  transform: none;
}
.about-content p {
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 20px;
  font-size: 1.05rem;
}
.credentials {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 32px;
}
.credential-item {
  display: flex;
  align-items: start;
  gap: 16px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(230, 212, 168, 0.15), rgba(255, 249, 237, 0.8));
  border-radius: 16px;
  border: 2px solid var(--accent);
  box-shadow: 0 6px 20px rgba(139, 105, 20, 0.15);
  transition: all 0.3s ease;
}
.credential-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(139, 105, 20, 0.25);
  border-color: var(--primary);
}
.credential-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
  filter: drop-shadow(2px 2px 4px rgba(139, 105, 20, 0.2));
}
.credential-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--bg);
  font-size: 1.1rem;
}
.credential-item p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}
@media (min-width: 800px) {
  .about-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 48px;
  }
  .credentials {
    grid-template-columns: 1fr 1fr;
  }
}

/* Swedish Massage Info Section */
.swedish-massage-info h2,
.swedish-massage-info .section-intro {
  color: var(--card);
}
.swedish-massage-info h3 {
  color: var(--bg);
  font-size: 1.8rem;
  margin-bottom: 24px;
  text-align: left;
}
.swedish-image-container {
  margin: 32px auto 48px;
  max-width: 900px;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(139, 105, 20, 0.3);
  border: 4px solid var(--accent);
  transition: all 0.4s ease;
}
.swedish-image-container:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(139, 105, 20, 0.4);
  border-color: var(--primary);
}
.swedish-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 500px;
  transition: transform 0.5s ease;
}
.swedish-image-container:hover .swedish-image {
  transform: scale(1.05);
}
.swedish-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-top: 40px;
}
@media (min-width: 900px) {
  .swedish-grid {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
  }
}
.swedish-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.swedish-list li {
  display: flex;
  align-items: start;
  gap: 16px;
  padding: 20px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--card), rgba(230, 212, 168, 0.1));
  border: 2px solid var(--accent);
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(139, 105, 20, 0.15);
  transition: all 0.3s ease;
}
.swedish-list li:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 28px rgba(139, 105, 20, 0.25);
  border-color: var(--primary);
}
.technique-icon {
  font-size: 2rem;
  flex-shrink: 0;
  filter: drop-shadow(2px 2px 4px rgba(139, 105, 20, 0.2));
}
.swedish-list strong {
  display: block;
  color: var(--bg);
  font-size: 1.1rem;
  margin-bottom: 4px;
  font-family: "Playfair Display", Georgia, serif;
}
.swedish-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 28px;
}
@media (min-width: 500px) {
  .benefits-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.benefit-card {
  background: linear-gradient(135deg, var(--card), rgba(230, 212, 168, 0.15));
  border: 3px solid var(--accent);
  border-radius: 20px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 8px 28px rgba(139, 105, 20, 0.2);
  transition: all 0.4s ease;
}
.benefit-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 16px 40px rgba(139, 105, 20, 0.3);
  border-color: var(--primary);
}
.benefit-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  filter: drop-shadow(2px 2px 6px rgba(139, 105, 20, 0.3));
}
.benefit-card h4 {
  color: var(--bg);
  font-size: 1.2rem;
  margin-bottom: 8px;
  font-family: "Playfair Display", Georgia, serif;
}
.benefit-card p {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
}
.swedish-note {
  background: linear-gradient(135deg, rgba(139, 105, 20, 0.1), rgba(230, 212, 168, 0.2));
  border-left: 4px solid var(--accent);
  padding: 20px 24px;
  border-radius: 12px;
  color: var(--muted);
  font-style: italic;
  line-height: 1.8;
  box-shadow: 0 4px 16px rgba(139, 105, 20, 0.1);
}

/* Services Grid */
.services-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}
.service-card {
  background: linear-gradient(135deg, var(--card), rgba(230, 212, 168, 0.1));
  border: 3px solid var(--accent);
  border-radius: 20px;
  padding: 36px 28px;
  box-shadow: 0 8px 32px rgba(139, 105, 20, 0.2);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(230, 212, 168, 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.service-card:hover::before {
  opacity: 1;
}
.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 48px rgba(139, 105, 20, 0.35);
  border-color: var(--primary);
}
.service-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
  display: block;
  filter: drop-shadow(2px 2px 6px rgba(139, 105, 20, 0.3));
  transition: transform 0.3s ease;
}
.service-card:hover .service-icon {
  transform: scale(1.15) rotate(5deg);
}
.service-card h3 {
  margin-bottom: 16px;
  color: var(--bg);
  font-size: 1.6rem;
}
.service-card p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 20px;
  flex-grow: 1;
}
.service-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 2px solid var(--accent);
  font-size: 0.95rem;
}
.service-details .duration {
  color: var(--muted);
  font-weight: 500;
}
.service-details .price {
  font-weight: 700;
  color: var(--bg);
  font-size: 1.15rem;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 40px;
}
.price-card {
  background: linear-gradient(135deg, var(--card), rgba(230, 212, 168, 0.15));
  border: 2px solid var(--accent);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 8px 28px rgba(139, 105, 20, 0.2);
  transition: all 0.4s ease;
  position: relative;
}
.price-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(139, 105, 20, 0.35);
}
.price-card h3 {
  color: var(--bg);
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.price-card .price {
  font-size: 3rem;
  font-weight: 700;
  margin: 16px 0 20px;
  background: linear-gradient(135deg, var(--bg), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.price-card .feat {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  color: var(--muted);
}
.price-card .feat li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(139, 105, 20, 0.1);
}
.price-card .feat li:last-child {
  border-bottom: none;
}
.price-card.featured {
  border-color: var(--primary);
  border-width: 3px;
  box-shadow: 0 12px 40px rgba(230, 212, 168, 0.4);
  transform: scale(1.05);
}
.price-card.featured::before {
  content: 'POPULAR';
  position: absolute;
  top: 20px;
  right: -30px;
  background: linear-gradient(135deg, var(--bg), var(--accent));
  color: var(--card);
  padding: 4px 40px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  transform: rotate(45deg);
  box-shadow: 0 4px 12px rgba(139, 105, 20, 0.3);
}
.price-card.featured:hover {
  transform: scale(1.08) translateY(-8px);
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 48px;
}
.testimonial {
  background: linear-gradient(145deg, var(--card) 0%, rgba(230, 212, 168, 0.15) 100%);
  border: 3px solid var(--accent);
  border-radius: 24px;
  padding: 36px 32px;
  box-shadow: 0 10px 40px rgba(139, 105, 20, 0.2);
  position: relative;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
}
.testimonial::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(230, 212, 168, 0.2) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.testimonial:hover::before {
  opacity: 1;
}
.testimonial:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 60px rgba(139, 105, 20, 0.35);
  border-color: var(--primary);
}
.testimonial-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bg), var(--accent));
  color: var(--card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(139, 105, 20, 0.3);
  border: 3px solid var(--primary);
  transition: all 0.3s ease;
}
.testimonial:hover .testimonial-avatar {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 24px rgba(139, 105, 20, 0.5);
}
.testimonial-info {
  flex-grow: 1;
}
.testimonial cite {
  display: block;
  color: var(--bg);
  font-style: normal;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 4px;
  font-family: "Playfair Display", Georgia, serif;
}
.testimonial-stars {
  font-size: 0.9rem;
  letter-spacing: 2px;
  filter: drop-shadow(1px 1px 2px rgba(139, 105, 20, 0.2));
}
.testimonial-text {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
  font-style: italic;
  position: relative;
  z-index: 1;
  margin: 0;
}
.testimonial-text::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: -10px;
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.15;
  font-family: Georgia, serif;
  line-height: 1;
  z-index: -1;
}

/* CTA */
.cta {
  background: linear-gradient(135deg, var(--bg) 0%, var(--accent) 50%, var(--bg) 100%);
  color: var(--card);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(230, 212, 168, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(184, 147, 92, 0.15) 0%, transparent 50%);
}
.cta-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.cta h2 {
  color: var(--card);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}
.cta h2::after {
  background: linear-gradient(90deg, transparent, var(--card), transparent);
}
.cta p {
  color: var(--card);
  opacity: 0.95;
  font-size: 1.1rem;
}
.cta .btn-light {
  justify-self: start;
  box-shadow: 0 6px 24px rgba(255, 249, 237, 0.4);
}
@media (min-width: 800px) {
  .cta-inner { grid-template-columns: 1fr auto; }
  .cta .btn-light { justify-self: end; }
}

/* Contact */
#contact h2,
#contact .section-intro {
  color: var(--card);
}
.contact-grid {
  display: grid; grid-template-columns: 1fr; gap: 24px; align-items: start;
}
.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  padding: 8px 12px;
  background: rgba(255,255,255,0.8);
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
  flex-wrap: wrap;
  gap: 4px;
}
.contact-list li:hover {
  transform: translateY(-2px);
}
.contact-list .icon {
  font-size: 1.2rem;
  margin-right: 10px;
  flex-shrink: 0;
}
.contact-list li strong {
  flex-shrink: 0;
  margin-right: 6px;
}
@media (max-width: 480px) {
  .contact-list li {
    align-items: flex-start;
  }
  .contact-list .icon {
    margin-top: 2px;
  }
}
.map-container {
  margin-top: 24px;
  overflow: hidden;
  border-radius: 12px;
  border: 3px solid var(--accent);
  box-shadow: 0 8px 24px rgba(139, 105, 20, 0.25);
  transition: all 0.3s ease;
}
.map-container:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(139, 105, 20, 0.35);
  border-color: var(--primary);
}
.map-container iframe {
  display: block;
  width: 100%;
}
.contact-form {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 249, 237, 0.9));
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(139, 105, 20, 0.2);
  border: 2px solid var(--accent);
}
.contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 0.95rem;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 2px solid var(--border);
  font: inherit;
  background: #fff;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  font-size: 1rem;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(230, 212, 168, 0.2);
}
.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-form button[type="submit"] {
  width: 100%;
  margin-top: 8px;
  padding: 16px;
  font-size: 1.05rem;
  font-weight: 600;
}
.fine-print {
  color: var(--muted);
  font-size: 0.85rem;
  text-align: center;
  margin-top: 12px;
}
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 1.1fr 0.9fr; }
}

/* Footer */
.site-footer {
  border-top: 3px solid var(--accent);
  padding: 40px 0 24px;
  background: linear-gradient(135deg, var(--bg), var(--accent));
  color: var(--card);
}
.footer-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.footer-content h3 {
  color: var(--primary);
  font-size: 1.8rem;
  margin-bottom: 12px;
  font-family: "Playfair Display", Georgia, serif;
}
.footer-tagline {
  color: rgba(255, 249, 237, 0.85);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 24px;
}
.footer-info {
  margin: 24px 0;
}
.footer-info p {
  color: var(--card);
  margin: 10px 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
}
.footer-info p::after {
  content: '•';
  margin-left: 12px;
  color: rgba(230, 212, 168, 0.5);
  font-size: 0.8rem;
}
.footer-info p:last-child::after {
  content: '';
  margin: 0;
}
.footer-info .icon {
  font-size: 1rem;
}
.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 24px 0 20px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(230, 212, 168, 0.15);
  color: var(--card);
  transition: all 0.3s ease;
  border: 2px solid rgba(230, 212, 168, 0.3);
}
.footer-social a:hover {
  background: var(--primary);
  color: var(--primary-contrast);
  border-color: var(--primary);
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 6px 20px rgba(230, 212, 168, 0.5);
}
.footer-social svg {
  width: 20px;
  height: 20px;
}
.footer-copyright {
  color: rgba(255, 249, 237, 0.7);
  font-size: 0.85rem;
  margin: 20px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(230, 212, 168, 0.2);
}
@media (max-width: 768px) {
  .footer-info p {
    display: flex;
    justify-content: center;
  }
  .footer-info p::after {
    display: none;
  }
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--bg), var(--accent));
  color: var(--card);
  border: 3px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(139, 105, 20, 0.4);
  transition: all 0.3s ease;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}
.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-to-top:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(139, 105, 20, 0.6);
  border-color: var(--highlight);
  background: linear-gradient(135deg, var(--accent), var(--highlight));
}
.scroll-to-top:active {
  transform: translateY(-4px);
}
.scroll-to-top svg {
  width: 24px;
  height: 24px;
  stroke-width: 3;
}
@media (max-width: 768px) {
  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
  }
  .scroll-to-top svg {
    width: 20px;
    height: 20px;
  }
}