
/* Base */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
:root {
  --ink: #0f172a;
  --muted: #475569;
  --brand: #0ea5e9;   /* cyan */
  --brand-2: #22d3ee; /* sky/cyan */
  --accent: #f59e0b;  /* amber */
  --soft: #f8fafc;
  --line: #e5e7eb;
  --shadow: 0 10px 30px rgba(2, 6, 23, .08);
}
body { color: var(--ink); background: linear-gradient(180deg, #ffffff, #f9fafb); font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif; line-height: 1.6;}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1120px; margin: 0 auto; padding: 20px; }
.btn { display:inline-block; padding:12px 18px; border-radius:999px; background: linear-gradient(90deg, var(--brand), var(--accent)); color:#fff; font-weight:800; box-shadow: var(--shadow); }
.btn.ghost { background: transparent; color: var(--brand); border: 2px solid var(--brand); }
.btn.dark { background: #111827; }
.cta-row { display:flex; gap:12px; flex-wrap: wrap; }

/* Header */
.site-header { position: sticky; top:0; z-index: 20; background: rgba(255,255,255,0.85); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.nav { display:flex; align-items:center; justify-content:space-between; gap:16px; }
.brand { display:flex; align-items:center; gap:10px; font-weight:900; font-size: 20px; }
.brand img { width: 40px; height: auto; }
.menu a { margin-left: 18px; }

/* Hero */
.hero { background:
  radial-gradient(900px 400px at 90% -10%, rgba(245, 158, 11, .16), transparent 60%),
  radial-gradient(900px 500px at 10% -20%, rgba(14,165,233,.18), transparent 60%);
  padding: 60px 0 6px;
}
.hero-inner { display:grid; grid-template-columns: 1.05fr .95fr; gap: 18px; align-items: center; }
.hero .tag { display:inline-block; background: #fee2e2; color:#b91c1c; font-weight:900; padding:10px 16px; border-radius: 999px; }
.hero h1 { font-size: clamp(34px, 6vw, 56px); margin:16px 0 8px; letter-spacing: -0.02em; }
.hero p { color: var(--muted); font-size: clamp(16px, 2.6vw, 20px); }
.hero-art img { width: 100%; filter: drop-shadow(0 10px 30px rgba(2,6,23,.12)); border-radius: 24px; }

/* Features */
.about .features { display:grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feature { background: #fff; border: 1px solid var(--line); padding: 18px; border-radius: 18px; box-shadow: var(--shadow); }
.feature h3 { margin: 6px 0 8px; }

/* Visit & social */
.visit .visit-grid { display:grid; grid-template-columns: 1.1fr .9fr; gap: 16px; }
.visit-card, .social-card { background: #fff; border:1px solid var(--line); border-radius: 20px; padding: 18px; box-shadow: var(--shadow); }
.hours { color:#0c4a6e; }
.social-list { list-style:none; margin:0; padding:0; display:grid; gap:10px; }
.social-list li { display:flex; align-items:center; gap:10px; }
.social-list img { width: 20px; height: 20px; border-radius: 4px; } /* smaller icons */
.social-card a { color: #0ea5e9; }

/* Contact */
.contact .contact-grid { display:grid; grid-template-columns: repeat(3,1fr); gap:16px; }
.contact-card { background:#fff; border:1px solid var(--line); border-radius:20px; padding:18px; box-shadow: var(--shadow); }
.contact .row { display:flex; align-items:center; gap:8px; margin:6px 0; }
.contact .row img { width: 18px; height: 18px; border-radius: 3px; } /* tiny inside rows */
.follow-row { display:flex; justify-content:center; gap:12px; margin-top:18px; }

/* Footer */
.site-footer { border-top: 1px solid var(--line); color:#6b7280; text-align:center; padding: 18px; margin-top: 20px; }

/* Responsive */
@media (max-width: 980px) {
  .menu { display: none; }
  .hero-inner, .about .features, .visit .visit-grid, .contact .contact-grid { grid-template-columns: 1fr; }
}
