/* ============================================
   SEASIDE ANTIQUES & ART — CUSTOM STYLES
   Teal + Slate Grey | Vibrant Modern
   ============================================ */

/* --- CSS Custom Properties --- */
: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;
  --teal-950: #042f2e;

  --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;

  --accent-400: #fbbf24;
  --accent-500: #f59e0b;
  --accent-600: #d97706;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --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;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 4px 16px rgba(15, 23, 42, 0.1);
  --shadow-lg: 0 12px 40px rgba(15, 23, 42, 0.12);
  --shadow-xl: 0 20px 60px rgba(15, 23, 42, 0.15);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--slate-800);
  background: var(--slate-50);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; font-weight: 700; }

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

/* --- Typography Utilities --- */
.text-teal { color: var(--teal-600); }

/* --- Section Tags --- */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-700);
  margin-bottom: var(--space-md);
}
.section-tag--light { color: var(--teal-200); }
.section-tag::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--teal-500);
  display: inline-block;
}

/* --- Section Titles --- */
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--slate-900);
  margin-bottom: var(--space-lg);
}
.section-desc {
  font-size: 1.1rem;
  color: var(--slate-600);
  max-width: 560px;
  line-height: 1.7;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-xl);
  transition: var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--teal-600);
  color: #fff;
  box-shadow: 0 4px 14px rgba(13, 148, 136, 0.35);
}
.btn--primary:hover {
  background: var(--teal-700);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13, 148, 136, 0.45);
}
.btn--outline {
  background: transparent;
  color: var(--slate-800);
  border: 2px solid var(--slate-300);
}
.btn--outline:hover {
  border-color: var(--teal-500);
  color: var(--teal-700);
  transform: translateY(-2px);
}
.btn--light {
  background: #fff;
  color: var(--teal-800);
  box-shadow: var(--shadow-md);
}
.btn--light:hover {
  background: var(--teal-50);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn--ghost {
  background: transparent;
  color: var(--teal-200);
  border: 2px solid rgba(255,255,255,0.3);
}
.btn--ghost:hover {
  border-color: var(--teal-300);
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}
.btn--sm {
  padding: 0.6rem 1.25rem;
  font-size: 0.85rem;
}
.btn--full { width: 100%; justify-content: center; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(248, 250, 252, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--slate-200);
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(248, 250, 252, 0.95);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--slate-900);
}
.nav-logo-icon { color: var(--teal-600); }
.nav-logo-accent { color: var(--teal-600); }
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--slate-600);
  transition: var(--transition);
  position: relative;
}
.nav-links a:not(.nav-cta):hover { color: var(--teal-600); }
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--teal-500);
  transition: var(--transition);
}
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
  background: var(--teal-600);
  color: #fff !important;
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius-xl);
  font-weight: 600;
  transition: var(--transition);
}
.nav-cta:hover { background: var(--teal-700); transform: translateY(-1px); }

/* Mobile Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--slate-700);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--slate-50) 0%, var(--teal-50) 50%, var(--slate-100) 100%);
  padding-top: 72px;
}
.hero-geo {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.geo-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
}
.geo-circle--1 {
  width: 600px;
  height: 600px;
  background: var(--teal-400);
  top: -200px;
  right: -100px;
}
.geo-circle--2 {
  width: 300px;
  height: 300px;
  background: var(--accent-400);
  bottom: -80px;
  left: 10%;
  opacity: 0.12;
}
.geo-rect {
  position: absolute;
  border-radius: var(--radius-lg);
}
.geo-rect--1 {
  width: 200px;
  height: 200px;
  background: var(--teal-300);
  top: 15%;
  left: -60px;
  opacity: 0.1;
  transform: rotate(15deg);
}
.geo-rect--2 {
  width: 120px;
  height: 320px;
  background: var(--slate-300);
  bottom: 10%;
  right: 5%;
  opacity: 0.08;
  transform: rotate(-10deg);
}
.geo-tri {
  position: absolute;
  width: 0;
  height: 0;
  border-left: 100px solid transparent;
  border-right: 100px solid transparent;
  border-bottom: 170px solid var(--accent-400);
  opacity: 0.07;
  top: 30%;
  right: 15%;
  transform: rotate(20deg);
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-left { max-width: 540px; }
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--teal-700);
  background: rgba(13, 148, 136, 0.08);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-xl);
}
.hero-tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal-500);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.hero-title {
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  line-height: 1.05;
  margin-bottom: var(--space-xl);
  color: var(--slate-900);
}
.hero-title-line {
  display: block;
}
.hero-title-accent {
  color: var(--teal-600);
  font-style: italic;
  font-weight: 400;
}
.hero-desc {
  font-size: 1.15rem;
  color: var(--slate-600);
  line-height: 1.75;
  margin-bottom: var(--space-2xl);
  max-width: 480px;
}
.hero-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-3xl);
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}
.hero-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--teal-700);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: var(--slate-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: var(--space-xs);
}
.hero-stat-divider {
  width: 1px;
  height: 48px;
  background: var(--slate-300);
}

/* Hero Image Stack */
.hero-right { position: relative; }
.hero-img-stack {
  position: relative;
  height: 680px;
}
.hero-img {
  position: absolute;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}
.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-img--1 {
  width: 320px;
  height: 420px;
  top: 0;
  right: 0;
  z-index: 2;
}
.hero-img--2 {
  width: 260px;
  height: 190px;
  bottom: 200px;
  right: 60px;
  z-index: 3;
  border: 4px solid var(--slate-50);
}
.hero-img--3 {
  width: 200px;
  height: 260px;
  bottom: 0;
  left: 20px;
  z-index: 1;
}
.hero-badge {
  position: absolute;
  bottom: 280px;
  left: -20px;
  z-index: 4;
  background: var(--accent-500);
  color: var(--slate-900);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  box-shadow: var(--shadow-lg);
}

/* Hero Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: var(--space-2xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-400);
  z-index: 1;
}
.hero-scroll svg { animation: bounce 2s ease-in-out infinite; }
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ============================================
   CATEGORIES
   ============================================ */
.categories {
  padding: var(--space-4xl) 0;
  background: var(--slate-50);
}
.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}
.section-header .section-desc { margin: 0 auto; }
.cat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}
.cat-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  min-height: 280px;
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.cat-card--teal { background: var(--teal-600); color: #fff; }
.cat-card--slate { background: var(--slate-800); color: #fff; }
.cat-card--accent { background: var(--accent-500); color: var(--slate-900); }
.cat-card--dark { background: var(--slate-900); color: #fff; }

.cat-card-geo {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  opacity: 0.2;
}
.cat-card--accent .cat-card-geo { opacity: 0.3; }
.cat-card-content { position: relative; z-index: 1; }
.cat-card-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  opacity: 0.15;
  line-height: 1;
  display: block;
  margin-bottom: var(--space-sm);
}
.cat-card-title {
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
}
.cat-card-desc {
  font-size: 0.95rem;
  opacity: 0.8;
  line-height: 1.6;
  flex: 1;
}
.cat-card-link {
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: var(--space-md);
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  transition: var(--transition);
}
.cat-card:hover .cat-card-link { gap: var(--space-md); }
.cat-card--teal .cat-card-link,
.cat-card--accent .cat-card-link { color: inherit; }
.cat-card--slate .cat-card-link,
.cat-card--dark .cat-card-link { color: inherit; }

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: var(--space-4xl) 0;
  background: var(--slate-100);
  position: relative;
  overflow: hidden;
}
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}
.about-images {
  position: relative;
  height: 700px;
}
.about-img-main {
  position: absolute;
  width: 75%;
  height: 80%;
  top: 0;
  left: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-float {
  position: absolute;
  width: 55%;
  height: 40%;
  bottom: 0;
  right: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 5px solid var(--slate-100);
}
.about-img-float img { width: 100%; height: 100%; object-fit: cover; }
.about-geo {
  position: absolute;
  pointer-events: none;
}
.about-geo-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--teal-200);
  opacity: 0.3;
  top: -30px;
  right: 30%;
}
.about-geo-square {
  width: 80px;
  height: 80px;
  background: var(--accent-400);
  opacity: 0.2;
  bottom: 30%;
  left: -20px;
  transform: rotate(25deg);
}
.about-content { max-width: 480px; }
.about-text {
  font-size: 1.05rem;
  color: var(--slate-600);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}
.about-text em { color: var(--teal-700); font-style: italic; }
.about-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}
.about-feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--teal-100);
  color: var(--teal-700);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-feature strong {
  display: block;
  font-size: 1rem;
  color: var(--slate-900);
  margin-bottom: 2px;
}
.about-feature span {
  font-size: 0.9rem;
  color: var(--slate-500);
}

/* ============================================
   FEATURED
   ============================================ */
.featured {
  padding: var(--space-4xl) 0;
  background: var(--slate-50);
}
.featured-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}
.featured-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.featured-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.featured-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.featured-item:hover .featured-img img { transform: scale(1.05); }
.featured-img-tag {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  background: var(--teal-600);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-xl);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.featured-info {
  padding: var(--space-lg);
}
.featured-info h3 {
  font-size: 1.15rem;
  color: var(--slate-900);
  margin-bottom: var(--space-sm);
}
.featured-info p {
  font-size: 0.9rem;
  color: var(--slate-500);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

/* ============================================
   VISIT
   ============================================ */
.visit {
  padding: var(--space-4xl) 0;
  background: var(--slate-100);
}
.visit-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: stretch;
}
.visit-content { display: flex; flex-direction: column; gap: var(--space-xl); }
.visit-desc {
  font-size: 1.05rem;
  color: var(--slate-600);
  line-height: 1.7;
}
.visit-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}
.visit-detail {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}
.visit-detail-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--teal-100);
  color: var(--teal-700);
  display: flex;
  align-items: center;
  justify-content: center;
}
.visit-detail strong {
  display: block;
  font-size: 0.95rem;
  color: var(--slate-900);
  margin-bottom: 2px;
}
.visit-detail span,
.visit-detail a {
  font-size: 0.9rem;
  color: var(--slate-500);
}
.visit-detail a:hover { color: var(--teal-600); }
.visit-map {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 450px;
  box-shadow: var(--shadow-lg);
}
.visit-map iframe { width: 100%; height: 100%; position: relative; z-index: 1; }
.visit-map-overlay {
  position: absolute;
  inset: 0;
  border: 3px solid var(--teal-600);
  border-radius: var(--radius-lg);
  pointer-events: none;
  z-index: 2;
}

/* ============================================
   CTA
   ============================================ */
.cta {
  padding: var(--space-4xl) 0;
  background: var(--teal-900);
  position: relative;
  overflow: hidden;
}
.cta-bg { position: absolute; inset: 0; pointer-events: none; }
.cta-geo {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
}
.cta-geo--1 {
  width: 500px;
  height: 500px;
  background: var(--teal-400);
  top: -200px;
  left: -150px;
}
.cta-geo--2 {
  width: 300px;
  height: 300px;
  background: var(--accent-400);
  bottom: -100px;
  right: 10%;
}
.cta-geo--3 {
  width: 150px;
  height: 150px;
  background: #fff;
  top: 20%;
  right: 30%;
  opacity: 0.04;
}
.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  margin-bottom: var(--space-lg);
}
.cta-desc {
  font-size: 1.1rem;
  color: var(--teal-200);
  line-height: 1.75;
  margin-bottom: var(--space-2xl);
}
.cta-actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: var(--space-4xl) 0;
  background: var(--slate-50);
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}
.contact-info { max-width: 480px; }
.contact-desc {
  font-size: 1.05rem;
  color: var(--slate-600);
  line-height: 1.7;
  margin-bottom: var(--space-2xl);
}
.contact-channels {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.contact-channel {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  font-size: 0.95rem;
  color: var(--slate-700);
}
.contact-channel:hover {
  box-shadow: var(--shadow-md);
  color: var(--teal-700);
  transform: translateX(4px);
}
.contact-channel-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--teal-100);
  color: var(--teal-700);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Contact Form */
.contact-form-wrap {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-md);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--slate-700);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  border: 2px solid var(--slate-200);
  border-radius: var(--radius-sm);
  background: var(--slate-50);
  color: var(--slate-800);
  transition: var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal-500);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--teal-50);
  border: 1px solid var(--teal-200);
  border-radius: var(--radius-sm);
  color: var(--teal-800);
  font-size: 0.9rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--slate-900);
  color: var(--slate-400);
  padding: var(--space-4xl) 0 var(--space-xl);
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-3xl);
  padding-bottom: var(--space-3xl);
  border-bottom: 1px solid var(--slate-800);
}
.footer-brand { max-width: 300px; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: var(--space-md);
}
.footer-logo svg { color: var(--teal-400); }
.footer-logo span { color: var(--teal-400); }
.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--slate-500);
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2xl);
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate-300);
  margin-bottom: var(--space-lg);
}
.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: var(--slate-500);
  padding: var(--space-sm) 0;
  transition: var(--transition);
  line-height: 1.5;
}
.footer-col a:hover { color: var(--teal-400); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-xl);
  font-size: 0.85rem;
  color: var(--slate-600);
  flex-wrap: wrap;
  gap: var(--space-md);
}
.footer-bottom a { color: var(--teal-400); transition: var(--transition); }
.footer-bottom a:hover { color: var(--teal-300); }

/* ============================================
   SCROLL REVEAL (progressive enhancement)
   ============================================ */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .reveal.revealed {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: var(--space-2xl); }
  .hero-right { display: none; }
  .hero-left { max-width: 100%; }
  .about-layout { grid-template-columns: 1fr; }
  .about-images { height: 450px; order: -1; }
  .visit-layout { grid-template-columns: 1fr; }
  .visit-map { min-height: 350px; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info { max-width: 100%; }
  .footer-top { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(248, 250, 252, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: var(--space-xl);
    gap: var(--space-md);
    border-bottom: 1px solid var(--slate-200);
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-toggle { display: flex; }
  .cat-grid { grid-template-columns: 1fr; }
  .featured-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .hero-title { font-size: clamp(2.2rem, 8vw, 3.2rem); }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: var(--space-md); }
  .hero-stat-divider { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 var(--space-md); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; justify-content: center; }
  .footer-links { grid-template-columns: 1fr; }
}
