/* ==========================================================================
   Praxis Fürstenland — Stylesheet
   Farben aus dem Praxis-Logo: Türkis #009DB5 & Blattgrün #297E2B
   ========================================================================== */

:root {
  --teal-900: #063a42;
  --teal-800: #0a4f5a;
  --teal-700: #0d6473;
  --teal-600: #0d7f91;
  --teal-500: #009db5;   /* Logo-Türkis */
  --teal-400: #2bb9cf;
  --teal-300: #6fd3e2;
  --teal-100: #e3f7fa;

  --green-700: #1e5c20;
  --green-600: #297e2b;  /* Logo-Grün */
  --green-500: #3fa843;
  --green-300: #93cf90;
  --green-100: #eaf6e8;

  --ink: #0f2b30;
  --ink-soft: #3d5a5f;
  --paper: #f6fbfc;
  --white: #ffffff;

  --glass-bg: rgba(255, 255, 255, 0.55);
  --glass-bg-strong: rgba(255, 255, 255, 0.75);
  --glass-border: rgba(255, 255, 255, 0.6);
  --glass-shadow: 0 20px 60px -15px rgba(6, 58, 66, 0.35);

  --dark-glass-bg: rgba(6, 58, 66, 0.45);
  --dark-glass-border: rgba(255, 255, 255, 0.18);

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;

  --font-head: "Playfair Display", "Georgia", serif;
  --font-body: "Raleway", "Segoe UI", sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset & Base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--teal-900);
  line-height: 1.15;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); font-weight: 700; }
h3 { font-size: 1.4rem; font-weight: 700; }

p { line-height: 1.75; color: var(--ink-soft); margin: 0 0 1em; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--teal-600);
  background: var(--teal-100);
  border: 1px solid var(--teal-300);
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.eyebrow svg { width: 14px; height: 14px; }

.section-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.section-head.left { margin: 0 0 44px; text-align: left; }

section { position: relative; }
.section-pad { padding: 110px 0; }
@media (max-width: 768px) { .section-pad { padding: 76px 0; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.98rem;
  border: 2px solid transparent;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary {
  background: linear-gradient(135deg, var(--teal-500), var(--teal-700));
  color: var(--white);
  box-shadow: 0 14px 30px -8px rgba(0, 157, 181, 0.55);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -10px rgba(0, 157, 181, 0.65); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--teal-900);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.85); transform: translateY(-3px); }

.btn-outline {
  background: transparent;
  border-color: var(--teal-500);
  color: var(--teal-600);
}
.btn-outline:hover { background: var(--teal-500); color: var(--white); transform: translateY(-3px); }

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

/* ---------- Glass Panels ---------- */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: var(--radius-lg);
}

.glass-dark {
  background: var(--dark-glass-bg);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid var(--dark-glass-border);
  color: var(--white);
}

/* ---------- Reveal Animations ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
[data-reveal].in-view { opacity: 1; transform: translateY(0); }
[data-reveal-delay="1"] { transition-delay: 0.12s; }
[data-reveal-delay="2"] { transition-delay: 0.24s; }
[data-reveal-delay="3"] { transition-delay: 0.36s; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Top Banner ---------- */
.top-banner {
  background: linear-gradient(90deg, var(--teal-800), var(--teal-600));
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.top-banner .container {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  padding: 9px 24px;
}
.top-banner a { display: inline-flex; align-items: center; gap: 7px; transition: opacity 0.2s; }
.top-banner a:hover { opacity: 0.75; }
.top-banner svg { width: 14px; height: 14px; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  padding: 18px 0;
  transition: padding 0.4s var(--ease), background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.site-header .container {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-radius: 100px;
  padding: 10px 14px 10px 22px;
}
/* Glass pill lives on a pseudo-element (not the container itself) so that
   backdrop-filter does not turn .container into a containing block for
   position:fixed descendants (the mobile nav overlay lives inside it). */
.site-header .container::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: inherit;
  box-shadow: 0 10px 30px -14px rgba(6, 58, 66, 0.25);
  transition: box-shadow 0.4s var(--ease), background 0.4s var(--ease);
}
.site-header.scrolled .container::before {
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 14px 34px -12px rgba(6, 58, 66, 0.3);
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 42px; width: auto; }
.brand-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.18rem;
  color: var(--teal-900);
  line-height: 1.1;
}
.brand-name span { display: block; font-family: var(--font-body); font-weight: 600; font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green-600); }

.main-nav ul { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  position: relative;
  display: inline-block;
  padding: 10px 18px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  border-radius: 100px;
  transition: color 0.3s, background 0.3s;
}
.main-nav a:hover, .main-nav a.active { color: var(--teal-700); background: rgba(0, 157, 181, 0.1); }

.header-actions { display: flex; align-items: center; gap: 10px; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--teal-500);
  color: white;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-toggle svg { width: 20px; height: 20px; }

@media (max-width: 940px) {
  .main-nav { position: fixed; inset: 0; top: 0; left: 0; right: 0; bottom: 0; background: rgba(6, 58, 66, 0.65); backdrop-filter: blur(6px); display: flex; align-items: flex-start; justify-content: flex-end; opacity: 0; pointer-events: none; transition: opacity 0.35s var(--ease); z-index: 300; }
  .main-nav.open { opacity: 1; pointer-events: auto; }
  .main-nav .nav-panel { width: min(340px, 84vw); height: 100%; background: rgba(255,255,255,0.95); backdrop-filter: blur(20px); padding: 100px 30px 40px; transform: translateX(100%); transition: transform 0.45s var(--ease); box-shadow: -20px 0 50px rgba(0,0,0,0.2); }
  .main-nav.open .nav-panel { transform: translateX(0); }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 6px; }
  .main-nav a { font-size: 1.1rem; padding: 14px 18px; }
  .nav-toggle { display: inline-flex; }
  .nav-close { position: absolute; top: 26px; right: 26px; width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(0,0,0,0.1); background: white; display: flex; align-items: center; justify-content: center; }
  .nav-close svg { width: 18px; height: 18px; color: var(--teal-800); }
  .header-actions .btn-primary span { display: none; }
  .header-actions .btn-primary { padding: 13px; border-radius: 50%; }
}
@media (min-width: 941px) { .nav-close { display: none; } }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 76px 0 140px;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(180deg, #eafcff 0%, #f6fbfc 55%, #ffffff 100%);
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  z-index: -1;
  animation: float-blob 16s var(--ease) infinite;
}
.blob-1 { width: 480px; height: 480px; top: -160px; right: -120px; background: radial-gradient(circle at 30% 30%, var(--teal-300), var(--teal-500) 70%); animation-duration: 18s; }
.blob-2 { width: 380px; height: 380px; bottom: -140px; left: -100px; background: radial-gradient(circle at 60% 40%, var(--green-300), var(--green-600) 75%); animation-duration: 22s; animation-delay: -6s; }
.blob-3 { width: 260px; height: 260px; top: 40%; left: 46%; background: radial-gradient(circle, var(--teal-400), transparent 70%); opacity: 0.35; animation-duration: 14s; animation-delay: -3s; }

@keyframes float-blob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.08); }
  66% { transform: translate(-25px, 25px) scale(0.95); }
}
@media (prefers-reduced-motion: reduce) { .blob { animation: none; } }

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
  align-items: center;
}
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; } }

.hero-copy .eyebrow { animation: fade-in-up 0.8s var(--ease) 0.1s both; }
.hero-copy h1 { animation: fade-in-up 0.9s var(--ease) 0.25s both; }
.hero-copy .lead { animation: fade-in-up 0.9s var(--ease) 0.4s both; }
.hero-copy .hero-cta { animation: fade-in-up 0.9s var(--ease) 0.55s both; }
.hero-copy .hero-stats { animation: fade-in-up 0.9s var(--ease) 0.7s both; }

@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-copy .lead { font-size: 1.14rem; max-width: 540px; }
.hero-copy .lead strong { color: var(--teal-800); }

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin: 32px 0 40px; }

.hero-stats { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stat {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 18px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: 0 10px 26px -14px rgba(6,58,66,0.25);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--teal-800);
}
.hero-stat .ic {
  width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--teal-500), var(--green-600));
  display: flex; align-items: center; justify-content: center; color: white;
}
.hero-stat .ic svg { width: 16px; height: 16px; }

/* Hero visual */
.hero-visual { position: relative; }
.hero-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 30px 70px -20px rgba(6, 58, 66, 0.45);
  animation: fade-in-up 1s var(--ease) 0.3s both;
}
.hero-card img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.02); transition: transform 6s var(--ease); }
.hero-card:hover img { transform: scale(1.12); }
.hero-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(200deg, rgba(6,58,66,0.05), rgba(6,58,66,0.55));
}

.hero-float-card {
  position: absolute;
  z-index: 3;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  min-width: 210px;
  animation: bob 5s ease-in-out infinite;
}
.hero-float-card.card-a { top: -26px; left: -36px; animation-delay: 0s; }
.hero-float-card.card-b { bottom: -30px; right: -26px; animation-delay: -2.4s; }
@media (max-width: 560px) {
  .hero-float-card.card-a { left: -10px; top: -18px; min-width: 170px; padding: 14px 16px; }
  .hero-float-card.card-b { right: -8px; bottom: -18px; min-width: 170px; padding: 14px 16px; }
}
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@media (prefers-reduced-motion: reduce) { .hero-float-card { animation: none; } }

.hero-float-card .fc-title { font-weight: 700; color: var(--teal-900); font-size: 0.95rem; display: flex; align-items: center; gap: 8px;}
.hero-float-card .fc-sub { font-size: 0.8rem; color: var(--ink-soft); margin-top: 2px; }
.hero-float-card .stars { color: var(--green-600); letter-spacing: 2px; font-size: 0.85rem; }

.scroll-cue {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-700);
  opacity: 0.8;
}
.scroll-cue .dot-track { width: 2px; height: 40px; background: rgba(0,157,181,0.25); border-radius: 2px; position: relative; overflow: hidden; }
.scroll-cue .dot-track::after { content:""; position:absolute; top:-40%; left:0; width:100%; height:40%; background: var(--teal-500); animation: scroll-dot 2s ease-in-out infinite; }
@keyframes scroll-dot { 0% { top: -40%; } 100% { top: 100%; } }
@media (max-width: 760px) { .scroll-cue { display: none; } }

/* Wave divider */
.wave-divider { line-height: 0; margin-top: -2px; }
.wave-divider svg { width: 100%; height: 70px; display: block; }

/* ---------- About ---------- */
.about-section { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px; align-items: center; }
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } }

.about-portrait { position: relative; }
.about-portrait .ring {
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-100), var(--green-100));
  border: 1px solid rgba(0,157,181,0.2);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px -25px rgba(6,58,66,0.35);
}
.about-portrait .ring svg { width: 46%; height: 46%; color: var(--teal-500); }
.about-portrait .ring-badge {
  position: absolute; bottom: 6%; right: 4%;
  background: var(--white);
  border-radius: 50%;
  width: 92px; height: 92px;
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  box-shadow: 0 16px 34px -12px rgba(6,58,66,0.35);
  text-align: center;
  animation: bob 6s ease-in-out infinite;
}
.about-portrait .ring-badge strong { font-family: var(--font-head); font-size: 1.3rem; color: var(--teal-600); line-height: 1; }
.about-portrait .ring-badge span { font-size: 0.58rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-soft); }

.about-copy .signature { font-family: var(--font-head); font-style: italic; color: var(--green-600); font-size: 1.3rem; margin-top: 24px; }
.about-checks { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px; margin: 26px 0; }
.about-checks li { display: flex; align-items: flex-start; gap: 10px; font-weight: 600; color: var(--teal-900); font-size: 0.95rem; }
.about-checks svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--green-600); margin-top: 1px; }
@media (max-width: 520px) { .about-checks { grid-template-columns: 1fr; } }

/* ---------- Services ---------- */
.services-section { background: linear-gradient(180deg, var(--white), var(--teal-100) 130%); }
.service-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 34px; }
@media (max-width: 860px) { .service-cards { grid-template-columns: 1fr; } }

.service-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.service-card:hover { transform: translateY(-10px); box-shadow: 0 34px 70px -20px rgba(6,58,66,0.4); }

.service-media { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.service-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.service-card:hover .service-media img { transform: scale(1.08); }
.service-tag {
  position: absolute; top: 18px; left: 18px;
  background: rgba(255,255,255,0.85); backdrop-filter: blur(8px);
  padding: 8px 16px; border-radius: 100px; font-weight: 700; font-size: 0.78rem;
  color: var(--teal-700); display: flex; align-items: center; gap: 8px;
}
.service-tag svg { width: 15px; height: 15px; }

.service-body { padding: 30px 30px 32px; background: var(--glass-bg); backdrop-filter: blur(18px); flex: 1; display: flex; flex-direction: column; }
.service-list { display: grid; gap: 10px; margin: 18px 0 26px; }
.service-list li { display: flex; align-items: center; gap: 10px; font-weight: 600; color: var(--ink); font-size: 0.96rem; }
.service-list li svg { width: 18px; height: 18px; color: var(--green-600); flex-shrink: 0; }
.service-body .btn { margin-top: auto; align-self: flex-start; }

/* ---------- Why / trust strip ---------- */
.trust-strip { padding: 70px 0; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 800px) { .trust-grid { grid-template-columns: 1fr; } }
.trust-card {
  padding: 32px 28px;
  border-radius: var(--radius-md);
  text-align: left;
  transition: transform 0.4s var(--ease);
}
.trust-card:hover { transform: translateY(-6px); }
.trust-card .ic {
  width: 54px; height: 54px; border-radius: 16px;
  background: linear-gradient(135deg, var(--teal-500), var(--green-600));
  display: flex; align-items: center; justify-content: center; color: white; margin-bottom: 18px;
}
.trust-card .ic svg { width: 26px; height: 26px; }
.trust-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.trust-card p { margin: 0; font-size: 0.93rem; }

/* ---------- Gallery ---------- */
.gallery-section { background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 18px;
}
.gallery-item {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  isolation: isolate;
}
.gallery-item.span-2 { grid-column: span 2; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.gallery-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(200deg, rgba(6,58,66,0), rgba(6,58,66,0.22));
  opacity: 0; transition: opacity 0.4s var(--ease);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover::after { opacity: 1; }
@media (max-width: 760px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery-item.span-2 { grid-column: span 2; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .gallery-item.span-2 { grid-column: span 1; }
}

/* ---------- Prices ---------- */
.prices-section { background: linear-gradient(180deg, var(--teal-900), var(--teal-800) 55%, var(--teal-700)); position: relative; overflow: hidden; }
.prices-section::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(255,255,255,0.08), transparent 45%), radial-gradient(circle at 85% 80%, rgba(41,126,43,0.35), transparent 45%);
  pointer-events: none;
}
.prices-section .section-head h2, .prices-section .section-head p { color: rgba(255,255,255,0.92); }
.prices-section .eyebrow { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.25); color: #bdf0f7; }

.price-groups { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; }
@media (max-width: 860px) { .price-groups { grid-template-columns: 1fr; } }

.price-panel { padding: 36px 36px 30px; }
.price-panel h3 { color: white; display: flex; align-items: center; gap: 12px; margin-bottom: 6px; }
.price-panel h3 svg { width: 26px; height: 26px; color: var(--green-300); }
.price-panel .panel-note { color: rgba(255,255,255,0.65); font-size: 0.88rem; margin-bottom: 22px; }

.price-row {
  display: flex; justify-content: space-between; align-items: baseline; gap: 16px;
  padding: 15px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.18);
}
.price-row:last-child { border-bottom: none; }
.price-row .p-name { color: rgba(255,255,255,0.95); font-weight: 600; }
.price-row .p-desc { display: block; color: rgba(255,255,255,0.55); font-size: 0.78rem; font-weight: 400; margin-top: 3px; max-width: 340px; }
.price-row .p-amount { color: var(--green-300); font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; white-space: nowrap; }
.price-row.featured { background: rgba(41,126,43,0.18); margin: 0 -16px; padding: 15px 16px; border-radius: 12px; border-bottom: none; }
.price-badge { display: inline-block; background: var(--green-600); color: white; font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.08em; padding: 3px 9px; border-radius: 100px; margin-left: 8px; vertical-align: middle; }

.price-footnote { text-align: center; color: rgba(255,255,255,0.7); font-size: 0.88rem; margin-top: 34px; }
.price-footnote a { color: #bdf0f7; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Hours ---------- */
.hours-strip {
  margin-top: -1px;
  padding: 46px 0;
  background: var(--white);
}
.hours-inner {
  display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap;
  padding: 30px 40px;
}
.hours-item { display: flex; align-items: center; gap: 14px; }
.hours-item .ic { width: 46px; height: 46px; border-radius: 50%; background: var(--teal-100); color: var(--teal-600); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hours-item .ic svg { width: 22px; height: 22px; }
.hours-item strong { display: block; color: var(--teal-900); font-size: 0.95rem; }
.hours-item span { color: var(--ink-soft); font-size: 0.88rem; }

/* ---------- Contact ---------- */
.contact-section { background: var(--paper); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: stretch; }
@media (max-width: 940px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-form-panel { padding: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.field label { font-weight: 700; font-size: 0.82rem; color: var(--teal-900); }
.field input, .field textarea {
  border: 1px solid rgba(6,58,66,0.15);
  background: rgba(255,255,255,0.7);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--teal-500);
  box-shadow: 0 0 0 4px rgba(0,157,181,0.15);
}
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.78rem; color: var(--ink-soft); margin-top: 14px; }

.contact-info-panel { padding: 40px; display: flex; flex-direction: column; }
.contact-info-list { display: grid; gap: 20px; margin-bottom: 26px; }
.contact-info-row { display: flex; align-items: flex-start; gap: 16px; }
.contact-info-row .ic { width: 48px; height: 48px; border-radius: 14px; background: linear-gradient(135deg, var(--teal-500), var(--green-600)); color: white; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-row .ic svg { width: 22px; height: 22px; }
.contact-info-row strong { display: block; color: var(--teal-900); font-size: 0.98rem; margin-bottom: 2px; }
.contact-info-row a, .contact-info-row span { color: var(--ink-soft); font-size: 0.92rem; }
.contact-info-row a:hover { color: var(--teal-600); }

.map-frame { position: relative; border-radius: var(--radius-md); overflow: hidden; flex: 1; min-height: 220px; filter: saturate(0.85); border: 1px solid rgba(6,58,66,0.1); }
.map-frame iframe { width: 100%; height: 100%; min-height: 220px; border: 0; display: block; }
.map-frame .map-link {
  position: absolute; right: 10px; bottom: 10px;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(6px);
  color: var(--teal-700); font-weight: 700; font-size: 0.76rem;
  padding: 7px 12px; border-radius: 100px; box-shadow: 0 6px 16px -6px rgba(6,58,66,0.35);
}
.map-frame .map-link:hover { background: var(--white); }

/* ---------- CTA Band ---------- */
.cta-band { padding: 90px 0; text-align: center; position: relative; overflow: hidden; background: linear-gradient(135deg, var(--teal-700), var(--teal-900) 65%, var(--green-700)); }
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.1), transparent 45%), radial-gradient(circle at 85% 75%, rgba(63,168,67,0.35), transparent 45%);
  pointer-events: none;
}
.cta-band-inner { padding: 60px 40px; position: relative; }
.cta-band h2 { color: white; }
.cta-band p { color: rgba(255,255,255,0.85); max-width: 520px; margin: 0 auto 30px; }
.cta-band .btn-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer { background: linear-gradient(180deg, var(--teal-900), #042127); color: rgba(255,255,255,0.75); padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.1); }
@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand img { height: 40px; }
.footer-brand span { font-family: var(--font-head); font-size: 1.15rem; color: white; font-weight: 700; }
.footer-col h4 { color: white; font-family: var(--font-body); font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul { display: grid; gap: 11px; }
.footer-col a { font-size: 0.92rem; transition: color 0.25s, padding-left 0.25s; }
.footer-col a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 24px 0; flex-wrap: wrap; font-size: 0.82rem; }
.footer-bottom a { color: rgba(255,255,255,0.85); font-weight: 700; }
.footer-bottom a:hover { text-decoration: underline; }
.footer-credits { margin: 0 0 22px; font-size: 0.72rem; color: rgba(255,255,255,0.45); text-align: center; }

/* ---------- Back to top ---------- */
.to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 150;
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-500), var(--green-600));
  color: white; border: none; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 30px -10px rgba(6,58,66,0.5);
  opacity: 0; pointer-events: none; transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s;
}
.to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.to-top svg { width: 20px; height: 20px; }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.color-accent { color: var(--teal-600); }
