*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --teal-50: #f0fdfa;
  --teal-100: #ccfbf1;
  --teal-200: #99f6e4;
  --teal-300: #5eead4;
  --teal-400: #2dd4bf;
  --teal-500: #14b8a6;
  --teal-600: #0d9488;
  --teal-700: #0f766e;
  --teal-800: #115e59;
  --teal-900: #134e4a;
  
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --slate-950: #020617;
  
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-full: 9999px;
  
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
}

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

body {
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  color: var(--slate-800);
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

/* ─── Preloader ─── */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--slate-950);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader {
  width: 32px;
  height: 32px;
  border: 2px solid var(--slate-700);
  border-top-color: var(--teal-400);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ─── Navigation ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background var(--transition-base), box-shadow var(--transition-base), padding var(--transition-base);
  padding: var(--space-lg) 0;
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 1px 0 var(--slate-200);
  padding: var(--space-md) 0;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 500;
  font-size: 1rem;
  color: #ffffff;
  letter-spacing: -0.01em;
  transition: color var(--transition-base);
}

.nav.scrolled .nav-logo {
  color: var(--slate-900);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
}

.nav-menu a {
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.01em;
  transition: color var(--transition-fast);
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width var(--transition-base);
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-menu a:hover {
  color: #ffffff;
}

.nav.scrolled .nav-menu a {
  color: var(--slate-500);
}

.nav.scrolled .nav-menu a:hover {
  color: var(--slate-900);
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: rgba(255, 255, 255, 0.8) !important;
  font-weight: 400;
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-full);
  transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast) !important;
}

.nav-phone:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5) !important;
}

.nav.scrolled .nav-phone {
  color: var(--teal-700) !important;
  border-color: var(--teal-200);
}

.nav.scrolled .nav-phone:hover {
  background: var(--teal-50);
  border-color: var(--teal-400) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-sm);
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #ffffff;
  transition: transform var(--transition-base), opacity var(--transition-fast);
  transform-origin: center;
}

.nav.scrolled .nav-toggle span {
  background: var(--slate-800);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -5px);
}

/* ─── Hero ─── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(2, 6, 23, 0.55) 0%,
    rgba(2, 6, 23, 0.65) 50%,
    rgba(2, 6, 23, 0.80) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  padding: 0 var(--space-xl);
  color: #ffffff;
}

.hero-tag {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal-300);
  margin-bottom: var(--space-lg);
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-xl);
  color: #ffffff;
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  max-width: 580px;
  margin: 0 auto var(--space-2xl);
}

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

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2xl);
  flex-wrap: wrap;
}

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

.hero-stat-value {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.hero-stat-label {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 2px;
}

.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.2);
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-full);
  transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--teal-600);
  color: #ffffff;
}

.btn-primary:hover {
  background: var(--teal-700);
  box-shadow: 0 8px 24px rgba(13, 148, 136, 0.3);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
}

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

.btn-dark {
  background: var(--slate-900);
  color: #ffffff;
}

.btn-dark:hover {
  background: var(--slate-800);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.25);
}

.btn-full {
  width: 100%;
}

/* ─── Sections ─── */
.section {
  padding: var(--space-4xl) 0;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-3xl);
}

.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal-600);
  margin-bottom: var(--space-md);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--slate-900);
  margin-bottom: var(--space-lg);
}

.section-subtitle {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--slate-500);
}

/* ─── Deals Grid ─── */
.deals {
  background: var(--slate-50);
}

.deals-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

.deal-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  will-change: transform;
}

.deal-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 16px 40px rgba(0, 0, 0, 0.08);
}

.deal-card-img {
  height: 220px;
  overflow: hidden;
}

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

.deal-card:hover .deal-card-img img {
  transform: scale(1.04);
}

.deal-card-body {
  padding: var(--space-xl);
}

.deal-card-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--slate-900);
  margin-bottom: var(--space-sm);
  letter-spacing: -0.01em;
}

.deal-card-body p {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--slate-500);
}

/* ─── About ─── */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content .section-tag {
  margin-bottom: var(--space-md);
}

.about-content .section-title {
  margin-bottom: var(--space-xl);
}

.about-content > p {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--slate-600);
  margin-bottom: var(--space-lg);
}

.about-values {
  margin-top: var(--space-2xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.value-item {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
}

.value-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: var(--teal-50);
  color: var(--teal-700);
  margin-top: 2px;
}

.value-item strong {
  display: block;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--slate-900);
  margin-bottom: 2px;
}

.value-item span {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--slate-500);
  line-height: 1.6;
}

/* ─── Schedule ─── */
.schedule {
  background: var(--slate-950);
  color: #ffffff;
}

.schedule .section-tag {
  color: var(--teal-400);
}

.schedule .section-title {
  color: #ffffff;
}

.schedule .section-subtitle {
  color: var(--slate-400);
}

.schedule-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.schedule-content {
  padding-top: var(--space-sm);
}

.schedule-content .section-subtitle {
  margin-bottom: var(--space-2xl);
}

.hours-table {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--slate-800);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--slate-800);
  font-size: 0.9rem;
}

.hours-day {
  font-weight: 400;
  color: var(--slate-300);
}

.hours-time {
  font-weight: 300;
  color: var(--slate-400);
}

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

.schedule-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  aspect-ratio: 4/3;
}

.schedule-map iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* ─── Contact ─── */
.contact {
  background: #ffffff;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.contact-info .section-subtitle {
  margin-bottom: var(--space-2xl);
}

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

.contact-item {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
}

.contact-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: var(--teal-50);
  color: var(--teal-700);
}

.contact-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate-400);
  margin-bottom: 4px;
}

.contact-value {
  display: block;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--slate-800);
  line-height: 1.6;
}

.contact-value a {
  color: var(--teal-700);
  transition: color var(--transition-fast);
}

.contact-value a:hover {
  color: var(--teal-600);
}

/* ─── Contact Form ─── */
.contact-form-wrap {
  background: var(--slate-50);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
}

.contact-form-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--slate-900);
  margin-bottom: var(--space-xl);
  letter-spacing: -0.01em;
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--slate-600);
  margin-bottom: var(--space-sm);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--slate-900);
  background: #ffffff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  -webkit-appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--slate-400);
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--teal-400);
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-success {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-top: var(--space-lg);
  padding: var(--space-md) var(--space-lg);
  background: var(--teal-50);
  border: 1px solid var(--teal-200);
  border-radius: var(--radius-md);
  color: var(--teal-800);
  font-size: 0.9rem;
  font-weight: 400;
}

.form-success svg {
  flex-shrink: 0;
  color: var(--teal-600);
}

/* ─── Footer ─── */
.footer {
  background: var(--slate-950);
  color: var(--slate-400);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-3xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid var(--slate-800);
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 500;
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: var(--space-md);
}

.footer-brand p {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--slate-500);
  max-width: 280px;
}

.footer-links strong,
.footer-contact strong {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate-500);
  margin-bottom: var(--space-lg);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.footer-links a {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--slate-400);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-contact p {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--slate-500);
  margin-bottom: var(--space-sm);
}

.footer-contact a {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--teal-400);
  transition: color var(--transition-fast);
}

.footer-contact a:hover {
  color: var(--teal-300);
}

.footer-bottom {
  padding-top: var(--space-xl);
}

.footer-bottom p {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--slate-600);
}

/* ─── Scroll to top ─── */
.scroll-top {
  position: fixed;
  bottom: var(--space-xl);
  right: var(--space-xl);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--slate-900);
  color: #ffffff;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity var(--transition-base), transform var(--transition-base), visibility var(--transition-base), background var(--transition-fast);
  z-index: 900;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--teal-700);
}

/* ─── Scroll reveal (progressive enhancement) ─── */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  
  .reveal.revealed {
    opacity: 1;
    transform: translateY(0);
  }
  
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .deals-grid {
    gap: var(--space-lg);
  }
  
  .about-layout,
  .schedule-layout,
  .contact-layout {
    gap: var(--space-2xl);
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100vh;
    flex-direction: column;
    background: var(--slate-950);
    padding: 5rem var(--space-2xl) var(--space-2xl);
    gap: var(--space-xl);
    transform: translateX(100%);
    transition: transform var(--transition-base);
    z-index: 999;
  }

  .nav-menu.open {
    transform: translateX(0);
  }

  .nav-menu a {
    color: var(--slate-300) !important;
    font-size: 1rem;
  }

  .nav-menu a:hover {
    color: #ffffff !important;
  }

  .nav-phone {
    color: var(--teal-400) !important;
    border-color: var(--teal-800);
    justify-content: center;
    margin-top: var(--space-md);
  }

  .nav-phone:hover {
    background: var(--teal-900) !important;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-headline {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
  }

  .hero-stats {
    gap: var(--space-xl);
  }

  .hero-stat-value {
    font-size: 1.25rem;
  }

  .deals-grid {
    grid-template-columns: 1fr;
  }

  .about-layout,
  .schedule-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .about-image {
    aspect-ratio: 16/10;
    order: -1;
  }

  .schedule-map {
    aspect-ratio: 16/9;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-lg);
  }

  .section {
    padding: var(--space-3xl) 0;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-stats {
    flex-direction: column;
    gap: var(--space-lg);
  }

  .hero-stat-divider {
    width: 36px;
    height: 1px;
  }

  .contact-form-wrap {
    padding: var(--space-xl);
  }
}

/* Mobile menu overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-base), visibility var(--transition-base);
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}
