/* Reset */

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

/* Theme */

:root {
  --bg: #fafafa;
  --bg-alt: #f0f0f0;
  --text: #2a2a2a;
  --text-muted: #6a6a6a;
  --border: #d4d4d4;
  --card-bg: #f0f0f0;
  --accent: #2a2a2a;
  --accent-text: #fafafa;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #1e1e1e;
    --bg-alt: #262626;
    --text: #e8e8e8;
    --text-muted: #a0a0a0;
    --border: #3a3a3a;
    --card-bg: #2a2a2a;
    --accent: #e8e8e8;
    --accent-text: #1e1e1e;
  }
}

/* Base */

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

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

a {
  color: var(--text);
  text-decoration-color: var(--text-muted);
  text-underline-offset: 0.2em;
  transition: opacity 0.15s;
}

a:hover {
  opacity: 0.7;
}

/* Header */

.site-header {
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.5rem;
}

.header-inner {
  max-width: 900px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
}

.brand-logo {
  height: 40px;
}

@media (prefers-color-scheme: dark) {
  .brand-logo {
    filter: invert(1);
  }
}

.brand-name {
  font-weight: 700;
  font-size: 1.2rem;
}

.site-nav {
  display: flex;
  gap: 1.5rem;
}

.site-nav a {
  text-decoration: none;
  font-size: .95rem;
  padding-bottom: .15rem;
  border-bottom: 2px solid transparent;
}

.site-nav a.active {
  border-bottom-color: var(--text);
}

/* Layout */

main {
  flex: 1;
  max-width: 900px;
  margin: auto;
  padding: 3rem 1.5rem;
}

/* Hero */

.hero {
  text-align: center;
  padding-bottom: 3rem;
}

.hero h1 {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: .6rem;
}

.hero p {
  color: var(--text-muted);
  max-width: 520px;
  margin: auto;
}

/* Sections */

.section {
  padding: 2rem 0;
}

.section h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Cards */

.card-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.7rem;
}

.card h3 {
  font-size: 1.05rem;
  margin-bottom: .5rem;
}

.card p {
  font-size: .92rem;
  color: var(--text-muted);
}

/* Pricing */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1.5rem;
}

.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.price {
  font-size: 2.2rem;
  font-weight: 800;
}

.price-note {
  font-size: .85rem;
  color: var(--text-muted);
}

.btn {
  display: inline-block;
  background: var(--accent);
  color: var(--accent-text);
  text-decoration: none;
  padding: .65rem 1.4rem;
  border-radius: 6px;
  margin-top: 1rem;
}

/* Map */

.map-wrapper {
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin-top: 1.5rem;
}

.map-wrapper iframe {
  width: 100%;
  height: 420px;
  border: 0;
}

/* About card */

.about-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2.2rem;
  max-width: 720px;
  margin: auto;
}

.about-card p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.about-card p strong {
  color: var(--text);
}

/* Nala */

.nala-photo {
  text-align: center;
  margin: 1.6rem 0;
}

.nala-photo img {
  width: 220px;
  border-radius: 12px;
}

.nala-caption {
  font-size: .85rem;
  color: var(--text-muted);
  margin-top: .4rem;
}

/* Footer */

.site-footer {
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 2rem 1.5rem;
  font-size: .85rem;
  color: var(--text-muted);
}

/* Mobile */

@media (max-width:768px){

.header-inner{
flex-direction:column;
gap:.7rem;
}

.site-nav{
gap:1rem;
}

.hero h1{
font-size:2rem;
}

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

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

main{
padding:2rem 1.2rem;
}
