/* Magazine-Inspired Editorial Layout with Creative Positioning */
:root {
  /* Colors */
  --blue-50: #f5f9ff;
  --blue-100: #e9f1ff;
  --blue-200: #cfe3ff;
  --blue-500: #4a90e2;
  --blue-600: #2c5aa0;
  --primary: var(--blue-600);
  --secondary: var(--blue-500);
  
  --text: #1a1a1a;
  --text-light: #545454;
  --muted: #787878;
  --bg: #ffffff;
  --panel: #fafafa;
  --accent: #f5f5f5;
  --border: #e0e0e0;
  
  /* Typography */
  --font-display: "Playfair Display", "Georgia", serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  
  /* Type Sizes - Magazine Scale */
  --text-10xl: clamp(5rem, 15vw, 10rem);
  --text-9xl: clamp(4rem, 12vw, 8rem);
  --text-8xl: clamp(3rem, 10vw, 6rem);
  --text-7xl: clamp(2.5rem, 8vw, 4.5rem);
  --text-6xl: clamp(2rem, 6vw, 3.5rem);
  --text-5xl: clamp(1.75rem, 5vw, 3rem);
  --text-4xl: clamp(1.5rem, 4vw, 2.5rem);
  --text-3xl: clamp(1.25rem, 3vw, 2rem);
  --text-2xl: clamp(1.125rem, 2.5vw, 1.5rem);
  --text-xl: clamp(1rem, 2vw, 1.25rem);
  --text-lg: 1.125rem;
  --text-base: 1rem;
  --text-sm: 0.875rem;
  --text-xs: 0.75rem;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;
  
  /* Layout */
  --header-height: 72px;
  --max-width: 1920px;
  --content-padding: clamp(20px, 4vw, 80px);
  --grid-gap: 1.5rem;
}

/* Reset */
* { 
  box-sizing: border-box; 
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  font-weight: 400;
  width: 100%;
  max-width: 100vw;
  position: relative;
  min-height: 100vh;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
}

p {
  font-size: var(--text-base);
  line-height: 1.6;
  margin: 0 0 var(--space-sm) 0;
  color: var(--text-light);
  font-weight: 400;
}

ul, ol, li {
  font-weight: 400;
}

.lead {
  font-size: var(--text-xl);
  line-height: 1.5;
  font-weight: 300;
  color: var(--text-light);
}

.kicker {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: var(--space-sm);
}

.pull-quote {
  font-size: var(--text-2xl);
  font-family: var(--font-display);
  font-style: italic;
  color: var(--primary);
  border-left: 4px solid var(--primary);
  padding-left: var(--space-lg);
  margin: var(--space-xl) 0;
}

.display-heading {
  font-size: var(--text-7xl);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-xl);
}

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

.eyebrow {
  display: inline-block;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: var(--space-md);
}

.h2 {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-lg);
}

/* Navigation Indicator - Animated underline */
#nav-indicator,
.nav-indicator {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .25s ease, width .25s ease, left .25s ease;
  pointer-events: none;
  z-index: 100;
}

/* Skip Link */
.skip-link { 
  position: absolute; 
  top: -100px; 
  left: 16px; 
  background: var(--primary); 
  color: white; 
  padding: 8px 16px; 
  text-decoration: none;
  z-index: 10000; 
}
.skip-link:focus { 
  top: 16px; 
}

/* Container - Smart Full Width */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--content-padding);
}

/* Navigation - Compact Layout */
.header {
  position: sticky;
  top: 0;
  z-index: 1400;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  height: var(--header-height);
  display: flex;
  align-items: center;
  overflow: visible;
}

.nav {
  width: 100%;
}

.nav-logo {
  height: 40px;
  width: auto;
  opacity: 0.5;
  margin-right: calc(var(--space-lg) / 2);
  flex-shrink: 0;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--header-height);
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--content-padding);
  gap: var(--space-xl);
  overflow: visible;
}

.brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  gap: 2px;
  flex-shrink: 0;
}

.brand-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}

.brand-sub {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.03em;
}

.menu {
  display: flex;
  list-style: none;
  gap: 40px;
  align-items: center;
  flex-grow: 1;
  justify-content: center;
  position: relative;
}

.menu-mobile-brand,
.menu-footer {
  display: none;
}

.menu-link {
  padding: 0;
  text-decoration: none;
  color: var(--text);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  transition: color 0.2s ease;
  position: relative;
  text-transform: uppercase;
}

.menu-link:hover,
.menu-link.active {
  color: var(--primary);
}

.nav-cta {
  display: flex;
  gap: var(--space-sm);
  align-items: center;
  flex-shrink: 0;
}

.menu-cta {
  margin-left: 0;
}

.mobile-menu {
  display: none;
}

.menu-backdrop {
  display: none;
}

.menu-toggle {
  display: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 12px 24px;
  border-radius: 0;
  text-decoration: none;
  font-weight: 600;
  font-size: var(--text-sm);
  letter-spacing: 0.02em;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
  border: 2px solid var(--primary);
}

.btn-primary {
  background: var(--primary);
  color: white;
  border: none;
  box-shadow: 0 2px 4px rgba(44,90,160,.2);
  font-weight: 600;
  font-size: 13px;
  padding: 14px 28px;
}

.btn-primary:visited {
  color: white;
}

.btn-primary:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(44,90,160,.3);
}

.btn-secondary {
  background: white;
  color: var(--primary);
  border: 1px solid var(--border);
  font-weight: 500;
  font-size: 13px;
  padding: 14px 28px;
}

.btn-secondary:visited {
  color: var(--primary);
}

.btn-secondary:hover {
  background: var(--blue-50);
  border-color: var(--primary);
}

.btn-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-nav {
  background: var(--primary);
  color: white;
  padding: 12px 24px;
  border-radius: 0;
  text-decoration: none;
  font-weight: 600;
  font-size: var(--text-sm);
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
  border: 2px solid var(--primary);
  display: inline-block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-5px);
}

.btn-nav:visited {
  color: white;
}

.btn-nav.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.btn-nav:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  transform: translateY(-1px);
}

/* Hero Section */
.hero {
  position: relative;
  background: white;
  overflow: visible;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 80%;
  height: 200%;
  background: radial-gradient(circle, rgba(74,144,226,0.03) 0%, transparent 70%);
  animation: float 20s ease-in-out infinite;
  pointer-events: none;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(5deg); }
}

.hero-inner {
  width: 100%;
  padding: var(--space-5xl) 0 0 0;
  position: relative;
  z-index: 1;
}

.hero-shell {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--content-padding);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: flex-start;
  position: relative;
  padding-top: var(--space-lg);
}

.hero-primary {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  grid-column: 1;
  grid-row: 1;
  animation: fadeInUp 0.8s ease-out;
}

.hero-media {
  display: none;
}

.hero-cards-container {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: flex-start;
  margin-top: 0;
  padding-top: 10px;
  grid-column: 2;
  grid-row: 1;
  justify-content: flex-end;
}

.hero-image {
  width: min(100%, clamp(260px, 28vw, 340px));
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 18px;
}

/* Opening Hours Card */
.opening-hours-card {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: var(--space-2xl);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  width: 400px;
  flex-shrink: 0;
}

/* Vacation Card */
.vacation-card {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: var(--space-2xl);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  width: 300px;
  flex-shrink: 0;
}

.vacation-content {
  padding-top: var(--space-md);
}

.vacation-content p {
  color: var(--text-light);
  font-size: var(--text-base);
  line-height: 1.6;
  margin: 0;
}

.hours-title {
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text);
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-md);
  border-bottom: 2px solid var(--border);
  font-family: var(--font-body);
}

.hours-table {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-size: var(--text-base);
}

.hours-row:last-child {
  border-bottom: none;
  margin-top: 0;
  padding-top: var(--space-sm);
  border-top: none;
}

.hours-day {
  font-weight: 500;
  color: var(--text);
  min-width: 100px;
}

.hours-time {
  color: var(--text-light);
  text-align: right;
  flex: 1;
}

.hours-time-split {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  text-align: right;
  flex: 1;
}

.hours-time-split span {
  color: var(--text-light);
}

.hours-closed .hours-day {
  color: var(--muted);
}

.hours-closed .hours-time.closed {
  color: var(--muted);
  font-style: italic;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: var(--space-2xl);
  font-weight: 300;
  letter-spacing: -0.02em;
  position: relative;
}

.hero-title-main {
  display: block;
  color: var(--text);
  font-weight: 900;
}

.hero-title-sub {
  display: block;
  color: var(--primary);
  font-size: 1em;
  margin-top: var(--space-sm);
  font-weight: 300;
}

.hero-lead {
  font-size: var(--text-lg);
  line-height: 1.7;
  margin-bottom: var(--space-3xl);
  max-width: 600px;
  font-weight: 400;
  color: var(--text-light);
}

.hero-actions {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: var(--space-3xl);
}

/* Hero Info Grid */
.hero-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2xl);
  padding-top: var(--space-3xl);
  border-top: 1px solid #e0e0e0;
  width: 100%;
  grid-column: 1 / -1;
}

.info-card {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.info-icon {
  width: 40px;
  height: 40px;
  color: var(--primary);
  flex-shrink: 0;
  stroke-width: 1.5;
}

.info-card h3 {
  font-size: var(--text-base);
  font-weight: 600;
  margin: 0 0 var(--space-xs) 0;
  color: var(--text);
}

.info-card p {
  font-size: var(--text-sm);
  line-height: 1.6;
  margin: 0;
  color: var(--text-light);
}

/* Services Section */
.services {
  background: var(--accent);
  position: relative;
}

.services .container {
  position: relative;
  z-index: 1;
}

.sec-head {
  margin-bottom: var(--space-3xl);
}

.sec-head-side {
  text-align: left;
  max-width: 600px;
}

.sec-head-center {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-3xl) auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--grid-gap);
  position: relative;
}

.service-card {
  background: white;
  padding: var(--space-2xl);
  border-radius: 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card-featured {
  grid-column: span 7;
  grid-row: span 2;
  padding: var(--space-3xl);
}

.service-card-tall {
  grid-column: span 5;
  grid-row: span 2;
}

.service-card:nth-child(3) {
  grid-column: span 4;
}

.service-card:nth-child(4) {
  grid-column: span 4;
}

.service-card:nth-child(5) {
  grid-column: span 4;
}

.service-card:nth-child(6) {
  grid-column: span 6;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  z-index: 10;
}

.card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: var(--space-lg);
}

.card-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--primary);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  margin-bottom: var(--space-md);
  line-height: 1.1;
}

.service-card-featured h3 {
  font-size: var(--text-4xl);
}

.service-card p {
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--text-light);
}

/* FAQ Section */
.faq-section {
  margin-top: var(--space-3xl);
  padding-top: var(--space-3xl);
  border-top: 2px solid var(--border);
}

.faq-wrapper {
  width: 100%;
}

.faq-wrapper summary.faq-title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  text-align: center;
  margin-bottom: 0;
  position: relative;
  cursor: pointer;
  padding: var(--space-lg) var(--space-xl);
  background: white;
  border: 2px solid var(--blue-100);
  border-radius: 12px;
  list-style: none;
  transition: all 0.3s ease;
  display: block;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.faq-wrapper summary.faq-title:hover {
  background: var(--blue-50);
  border-color: var(--blue-200);
  box-shadow: 0 4px 12px rgba(44, 90, 160, 0.1);
}

.faq-wrapper summary.faq-title::after {
  content: '▼';
  position: absolute;
  right: var(--space-xl);
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
  font-size: var(--text-lg);
  color: var(--primary);
}

.faq-wrapper[open] summary.faq-title::after {
  transform: translateY(-50%) rotate(180deg);
}

.faq-wrapper[open] summary.faq-title {
  margin-bottom: var(--space-2xl);
  background: var(--blue-50);
  border-color: var(--primary);
}

.faq-wrapper summary.faq-title::-webkit-details-marker {
  display: none;
}

.faq-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  animation: fadeIn 0.4s ease-in-out;
  background: white;
  padding: var(--space-3xl);
  border-radius: 16px;
  box-shadow: inset 0 2px 12px rgba(44, 90, 160, 0.05);
  border: 1px solid var(--blue-100);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-column {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding-bottom: var(--space-md);
  transition: all 0.3s ease;
}

.faq-item summary {
  font-size: var(--text-lg);
  font-weight: 600;
  cursor: pointer;
  padding: var(--space-md) var(--space-sm);
  margin: 0 calc(-1 * var(--space-sm));
  border-radius: 8px;
  list-style: none;
  position: relative;
  padding-right: 40px;
  transition: all 0.3s ease;
}

.faq-item summary:hover {
  color: var(--primary);
  background: var(--blue-50);
  padding-left: var(--space-md);
}

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: var(--space-sm);
  top: 50%;
  transform: translateY(-50%);
  font-size: var(--text-2xl);
  font-weight: 300;
  color: var(--primary);
  transition: all 0.3s ease;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
  color: var(--blue-600);
  font-weight: 400;
}

.faq-answer {
  padding: var(--space-md) var(--space-sm);
  margin-left: var(--space-sm);
  animation: fadeIn 0.3s ease;
  border-left: 2px solid var(--blue-200);
}

/* Praxis Section */
.praxis {
  position: relative;
  background: white;
  min-height: 100vh;
}

.praxis-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: start;
  position: relative;
  min-height: 90vh;
}

.praxis-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

.praxis-text {
  max-width: 600px;
}

.praxis-content > div:last-child {
  position: sticky;
  top: calc(var(--header-height) + var(--space-2xl));
  padding: var(--space-2xl);
  background: linear-gradient(135deg, var(--blue-50), white);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(44,90,160,0.15);
  border: 1px solid var(--blue-200);
  height: fit-content;
  transition: all 0.3s ease;
}

.praxis-info h3 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-lg);
  color: var(--text);
}

.praxis-info p {
  font-size: var(--text-lg);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.praxis-info ul {
  padding-left: var(--space-lg);
  line-height: 2;
}

.praxis-info ul li {
  margin-bottom: var(--space-sm);
}

.praxis-info strong {
  color: var(--primary);
  font-weight: 600;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  gap: 4px;
  margin-top: var(--space-3xl);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item:nth-child(2) {
  grid-column: span 1;
  grid-row: span 1;
}

.gallery-item:nth-child(3) {
  grid-column: span 1;
  grid-row: span 1;
}

.gallery-item:nth-child(4) {
  grid-column: span 1;
  grid-row: span 1;
}

.gallery-item:nth-child(5) {
  grid-column: span 1;
  grid-row: span 2;
}

.gallery-item:nth-child(6) {
  grid-column: span 1;
  grid-row: span 1;
}

.gallery-item:nth-child(7) {
  grid-column: span 2;
  grid-row: span 1;
}

.gallery-item:nth-child(8) {
  grid-column: span 1;
  grid-row: span 1;
}

.gallery-item:nth-child(9) {
  grid-column: span 1;
  grid-row: span 1;
}

.gallery-item:nth-child(10) {
  grid-column: span 1;
  grid-row: span 1;
}

.gallery-item:nth-child(11) {
  grid-column: span 1;
  grid-row: span 1;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44,90,160,0.9), transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.zoom-icon {
  width: 48px;
  height: 48px;
  color: white;
}

/* Team Section */
.team {
  
  background: var(--accent);
  position: relative;
}

.team-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--content-padding);
}

.team-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
  position: relative;
}

.team-header h2 {
  font-size: var(--text-5xl);
  margin-bottom: var(--space-lg);
  position: relative;
  display: inline-block;
  color: var(--text);
}

.team-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--accent);
}

.team-header .subtitle {
  font-size: var(--text-lg);
  color: var(--text-light);
  margin-top: var(--space-md);
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.team-diagonal {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}

.team-grid {
  margin-bottom: var(--space-3xl);
}

.staff-intro {
  text-align: center;
  padding: var(--space-3xl) 0;
  background: linear-gradient(135deg, white, var(--blue-50));
  border-radius: 16px;
  margin-bottom: var(--space-3xl);
}

.staff-intro h3 {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  margin-bottom: var(--space-lg);
  color: var(--text);
}

.staff-intro p {
  font-size: var(--text-lg);
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
  color: var(--text-light);
}

/* Doctors Grid - Desktop Layout */
.doctors {
  display: grid;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}

.doctor-card {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-xl);
  align-items: start;
  background: white;
  padding: var(--space-2xl);
  border-radius: 0;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.doctor-card:nth-child(even) {
  grid-template-columns: 2fr 1fr;
  background: linear-gradient(135deg, white, var(--blue-50));
}

.doctor-card:nth-child(even) .doc-media {
  order: 2;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 85%);
}

.doctor-card:hover {
  transform: translateX(10px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.doc-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  border-radius: 0;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  align-self: flex-start;
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.doc-media img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(100%);
  transition: filter 0.4s ease, transform 0.4s ease;
}

.doctor-card:hover .doc-media img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.doc-info {
  padding: var(--space-xl);
  padding-top: 0;
}

.doc-info h3 {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  margin-bottom: var(--space-xs);
  line-height: 1;
  color: var(--text);
}

.doc-info .title {
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: var(--space-lg);
  font-weight: 600;
  display: block;
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--primary);
}

.doc-info p {
  font-size: var(--text-base);
  line-height: 1.8;
  margin-bottom: var(--space-md);
  color: var(--text-light);
  text-align: left;
  font-weight: 400;
}

.doc-info p strong {
  color: var(--text);
  font-weight: 600;
}

.doc-info p.u-italic {
  border-left: 3px solid var(--primary);
  padding-left: var(--space-md);
  margin-top: var(--space-lg);
  font-style: italic;
}

/* Staff Section */
.staff-section {
  margin-top: var(--space-3xl);
  padding: 0;
  background: transparent;
  position: relative;
}

.staff-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.staff-eyebrow {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-md);
}

.staff-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-lg);
  color: var(--text);
}

.staff-subtitle {
  font-size: var(--text-lg);
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.staff-grid-simple {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2xl);
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  justify-content: center;
}

.staff-card-simple {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  position: relative;
  width: calc(20% - var(--space-2xl));
  min-width: 260px;

  border: 1px solid var(--border);

  flex-direction: column;
  align-items: center;
  text-align: center;
}

.staff-card-simple:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.staff-card-simple:nth-child(even) {
  background: linear-gradient(135deg, white, var(--blue-50));
}

.staff-image-simple {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
  margin: 0 auto var(--space-xs);
}

.staff-image-simple img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.staff-card-simple:hover .staff-image-simple img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.staff-info-simple {
  text-align: center;
  padding: var(--space-xs) var(--space-sm);
  background: transparent;
  margin-top: auto;
}

.staff-info-simple h3 {
  font-size: var(--text-2xl);
  font-family: var(--font-display);
  color: var(--text);
  margin-bottom: var(--space-xs);
  font-weight: 600;
  line-height: 1.2;
}

.staff-info-simple p {
  color: var(--text-light);
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-weight: 500;
  margin: 0;
  opacity: 0.8;
  white-space: nowrap;
}

/* Footer */
.footer {
  background: white;
  color: var(--text);
  padding: var(--space-3xl) 0 var(--space-xl);
  border-top: 1px solid #e0e0e0;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.foot-col h3 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-sm);
  font-weight: 600;
  color: var(--text);
}

.foot-col h4 {
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-md);
  color: var(--text);
  font-weight: 600;
}

.foot-col p,
.foot-col ul {
  font-size: var(--text-sm);
  line-height: 1.6;
  color: var(--text-light);
  font-weight: 400;
}

.foot-col ul {
  list-style: none;
}

.foot-col ul li {
  margin-bottom: var(--space-xs);
}

.foot-col a {
  color: var(--primary);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.foot-col a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-sm);
  color: var(--text-light);
  border-top: 1px solid #e0e0e0;
  padding-top: var(--space-lg);
  margin-top: var(--space-lg);
  font-weight: 400;
}

.foot-legal {
  display: flex;
  gap: var(--space-md);
}

.foot-legal a {
  color: var(--text-light);
  text-decoration: none;
}

/* Modals */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
}

.modal[hidden] {
  display: none;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.8);
  cursor: pointer;
}

.modal-card {
  position: relative;
  background: white;
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: var(--space-xl);
  z-index: 1;
  font-weight: 400;
}

.modal-card p,
.modal-card li,
.modal-card ul {
  font-weight: 400;
}

.modal-close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  font-size: var(--text-2xl);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: transform 0.2s ease;
}

.modal-close:hover {
  transform: rotate(90deg);
}

.modal h2 {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-lg);
}

.modal-contact {
  max-width: 1000px;
  width: 90%;
}

.contact-modal-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

.contact-map-full {
  width: 100%;
  height: 350px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.contact-map-full iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.contact-details-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-item {
  display: flex;
  gap: var(--space-sm);
}

.contact-icon {
  width: 24px;
  height: 24px;
  color: var(--primary);
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-xs);
  color: var(--primary);
}

.contact-item p {
  font-size: var(--text-base);
  line-height: 1.6;
  font-weight: 400;
}

.contact-item a {
  color: var(--text);
  text-decoration: none;
}

.contact-item a:hover {
  color: var(--primary);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.95);
}

.lightbox[hidden] {
  display: none;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox-frame {
  position: relative;
}

.lightbox-frame img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0,0,0,0.5);
  border: 2px solid rgba(255,255,255,0.3);
  color: white;
  font-size: var(--text-2xl);
  cursor: pointer;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  border-radius: 50%;
  z-index: 10;
}

.lightbox-close:hover {
  background: rgba(0,0,0,0.7);
  border-color: white;
  transform: scale(1.1);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  border: 2px solid rgba(255,255,255,0.3);
  color: white;
  font-size: var(--text-2xl);
  width: 50px;
  height: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  border-radius: 50%;
  z-index: 10;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(0,0,0,0.7);
  border-color: white;
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

/* Utility Classes */
.u-service-list {
  margin-top: 1rem;
  padding-left: 1.5rem;
  color: var(--text-light);
  line-height: 1.8;
  list-style: disc;
  font-weight: 400;
}

.u-mt-05 { margin-top: 0.5rem; }
.u-mt-1 { margin-top: 1rem; }
.u-mt-15 { margin-top: 1.5rem; }
.u-mb-05 { margin-bottom: 0.5rem; }
.u-mb-1 { margin-bottom: 1rem; }
.u-mb-15 { margin-bottom: 1.5rem; }
.u-my-3 { margin: 3rem 0; }
.u-mx-auto { margin-left: auto; margin-right: auto; }
.u-pl-15 { padding-left: 1.5rem; }
.u-lh-18 { line-height: 1.8; }
.u-lh-2 { line-height: 2; }
.u-fw-600 { font-weight: 600; }
.u-italic { font-style: italic; }
.u-text-primary { color: var(--primary); }
.u-center { text-align: center; }
.u-normalize { text-transform: none; letter-spacing: normal; }
.u-w-800 { max-width: 800px; }

.u-font-09 { font-size: 0.9rem; }
.u-font-1125 { font-size: 1.125rem; }
.u-font-125 { font-size: 1.25rem; }
.u-font-2rem { font-size: 2rem; }
.u-font-25 { font-size: 2.5rem; }
.u-fw-400 { font-weight: 400; }
.u-fw-500 { font-weight: 500; }
.u-fw-normal { font-weight: normal; }

/* Loading States */
.skeleton {
  background: linear-gradient(90deg, var(--accent) 25%, var(--border) 50%, var(--accent) 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.lazy {
  filter: blur(8px);
  transition: filter 0.3s ease;
}

.loaded {
  filter: blur(0);
}

/* Wave Dividers */
.wave {
  position: absolute;
  left: 0;
  right: 0;
  width: 100vw;
  overflow: hidden;
  line-height: 0;
  z-index: 10;
  pointer-events: none;
  margin-left: calc(-50vw + 50%);
}

.wave-bottom {
  bottom: -1px;
}

.wave-top {
  top: -1px;
}

.wave svg {
  position: relative;
  display: block;
  width: 100%;
  height: 120px;
  min-width: 100%;
}

.wave path {
  transition: fill 0.3s ease;
}

/* Section Positioning for Waves */
.section {
  position: relative;
  overflow: visible;
}

.hero {
  padding-bottom: 120px;
}

.services {
  padding-bottom: 120px;
}

.praxis {
  padding-bottom: 120px;
}

.team {
  padding-bottom: 120px;
}

/* Section Numbers */
.section-number {
  position: absolute;
  top: var(--space-2xl);
  right: var(--content-padding);
  font-size: clamp(8rem, 20vw, 15rem);
  font-family: var(--font-display);
  font-weight: 900;
  color: rgba(44,90,160,0.05);
  line-height: 1;
  z-index: 0;
  pointer-events: none;
}

/* To Top Button */
.to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  background: var(--text);
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-lg);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  margin: 0;
}

.to-top.show {
  opacity: 1;
  visibility: visible;
}

.to-top:hover {
  background: var(--primary);
  transform: translateY(-5px);
}

/* ========================================
   CONSOLIDATED RESPONSIVE DESIGN
   ======================================== */

/* 1150px and below - Mobile Navigation */
@media (max-width: 1150px) {
  .nav-wrap {
    justify-content: space-between;
    gap: var(--space-lg);
  }

  .menu,
  .nav-cta,
  .nav-indicator {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 36px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    position: relative;
    z-index: 1300;
  }

  .menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) { 
    transform: translateY(7px) rotate(45deg); 
  }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { 
    opacity: 0; 
  }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { 
    transform: translateY(-7px) rotate(-45deg); 
  }

  .mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100vh;
    padding-top: var(--header-height);
    padding-left: var(--space-xl);
    padding-right: var(--space-xl);
    padding-bottom: var(--space-xl);
    background: white;
    z-index: 1200;
    overflow-y: auto;
    display: none;
    flex-direction: column;
    gap: var(--space-lg);
  }

  .mobile-menu-inner {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    flex: 1;
    margin-top: 0;
  }

  .mobile-menu-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
  }

  .mobile-menu-list .menu-link {
    display: block;
    padding: var(--space-md) 0;
    font-size: var(--text-lg);
    border-bottom: 1px solid var(--border);
  }

  .mobile-menu-cta {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-top: var(--space-xl);
  }

  .mobile-menu-footer {
    margin-top: auto;
    padding-top: var(--space-xl);
    border-top: 1px solid var(--border);
    text-align: center;
    color: var(--muted);
    font-size: var(--text-sm);
  }

  .menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1100;
    display: none;
  }

  body.nav-open {
    overflow: hidden;
  }

  body.nav-open .mobile-menu {
    display: flex;
  }

  body.nav-open .menu-backdrop {
    display: block;
  }
}

/* 1450px and below - Wrap Aktuelles card within the same column */
@media (max-width: 1450px) {
  .hero-cards-container {
    max-width: 400px;
  }

  .vacation-card {
    width: 100%;
  }
}

/* 1120px and below - Wrap both cards below text */
@media (max-width: 1120px) {
  .hero-shell {
    grid-template-columns: 1fr;
  }

  .hero-primary {
    grid-column: 1;
    grid-row: 1;
  }

  .hero-cards-container {
    grid-column: 1;
    grid-row: 2;
    justify-content: flex-start;
    max-width: none;
  }

  .vacation-card {
    width: 300px;
  }

  .hero-info-grid {
    grid-row: 3;
  }
}

/* 1200px and below - Tablet and Mobile Layout */
@media (max-width: 1200px) {
  :root {
    --content-padding: clamp(28px, 6vw, 72px);
  }

  /* Hero Layout Changes */
  .hero-info-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  /* DOCTOR CARDS - MOBILE LAYOUT */
  .doctor-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    padding: var(--space-2xl) var(--space-xl);
    gap: var(--space-xl);
  }

  .doctor-card:nth-child(even) {
    background: white;
  }

  .doctor-card:nth-child(even) .doc-media {
    order: 1;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  }

  .doc-media {
    order: 1;
    height: 400px;
    flex-shrink: 0;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    aspect-ratio: unset;
  }

  .doc-info {
    order: 2;
    width: 100%;
    text-align: left;
    padding: 0;
    margin: 0;
  }

  .doc-info h3 {
    margin-top: 0;
    margin-bottom: var(--space-xs);
    text-align: left;
  }

  .doc-info .title {
    margin-top: 0;
    margin-bottom: var(--space-lg);
    text-align: left;
  }

  .doc-info p {
    text-align: left;
  }

  .doc-info p:first-of-type {
    display: -webkit-box;
    -webkit-line-clamp: 6;
    line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 12em;
  }

  .doc-info p.u-italic {
    display: none;
  }
}

/* 1024px and below - Large Tablet */
@media (max-width: 1024px) {
  .hero-visual {
    position: static;
    transform: none;
    max-width: 100%;
    margin-top: var(--space-2xl);
    height: auto;
  }
  
  .staff-grid-simple {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }

  .staff-card-simple {
    min-height: 280px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .service-card:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
  }
  
  .gallery {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 200px;
  }

  .gallery-item:nth-child(n) {
    grid-column: span 1;
    grid-row: span 1;
  }
  
  .faq-container {
    grid-template-columns: 1fr;
  }
  
  .praxis-layout {
    grid-template-columns: 1fr;
  }
  
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

/* 900px and below - Mobile Adjustments */
@media (max-width: 900px) {
  .doctor-card {
    padding: var(--space-lg);
  }

  .doc-info h3 {
    font-size: var(--text-4xl);
  }

  .doc-info p {
    font-size: var(--text-sm);
  }
}

/* 650px and below - Stack cards vertically */
@media (max-width: 650px) {
  .hero-cards-container {
    gap: var(--space-md);
    flex-direction: column;
  }

  .opening-hours-card,
  .vacation-card {
    width: 100%;
    max-width: 100%;
  }
}

/* 768px and below - Small Mobile */
@media (max-width: 768px) {
  :root {
    --text-8xl: 3rem;
    --text-7xl: 2.5rem;
    --text-6xl: 2rem;
    --text-5xl: 1.75rem;
    --text-4xl: 1.5rem;
  }

  .wave svg {
    height: 60px;
  }

  .hero,
  .services,
  .praxis,
  .team {
    padding-bottom: 60px;
  }

  .opening-hours-card,
  .vacation-card {
    padding: var(--space-lg);
    border-radius: 8px;
  }

  .hours-title {
    font-size: var(--text-xs);
    margin-bottom: var(--space-lg);
  }

  .hours-row {
    padding: calc(var(--space-sm) * 0.75) 0;
    font-size: var(--text-sm);
  }

  .hours-day {
    min-width: 80px;
  }
  
  .staff-grid-simple {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .staff-card-simple {
    padding: var(--space-xs);
    min-height: 520px;
  }

  .staff-image-simple {
    width: calc(100% - var(--space-xs));
    height: 450px;
  }

  .staff-info-simple h3 {
    font-size: var(--text-xl);
  }
  
  .section-number {
    font-size: 6rem;
    opacity: 0.03;
  }
  
  .gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }

  .gallery-item:nth-child(n) {
    grid-column: span 1;
    grid-row: span 1;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .foot-bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }
  
  .contact-details-row {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .contact-map-full {
    height: 250px;
  }

  .lightbox-prev,
  .lightbox-next {
    width: 40px;
    height: 40px;
    font-size: var(--text-xl);
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .to-top {
    bottom: 15px;
    right: 15px;
    width: 44px;
    height: 44px;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
    transition-duration: 0.01ms;
  }
}

/* Print */
@media print {
  .header,
  .footer,
  .menu-toggle,
  .to-top {
    display: none;
  }
  
  .hero {
    min-height: auto;
    padding: 0;
  }
  
  body {
    font-size: 12pt;
  }
}



  