:root {
  --color-bg: #fffdf7;
  --color-text: #1a1a1a;
  --color-muted: #6b6b6b;
  --color-yellow: #ffc72c;
  --color-red: #c8202b;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.5;
}

.hero {
  background: var(--color-yellow);
  color: var(--color-text);
  text-align: center;
  padding: 4rem 1rem;
}

.hero h1 {
  margin: 0 0 0.5rem;
  font-size: 2.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.hero .tagline {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-red);
}

main {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

section {
  margin-bottom: 3rem;
}

h2 {
  border-bottom: 3px solid var(--color-red);
  padding-bottom: 0.5rem;
}

#services ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.75rem;
}

#services li {
  background: white;
  border-left: 4px solid var(--color-yellow);
  border-radius: 4px;
  padding: 0.75rem 1rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.photo-placeholder {
  aspect-ratio: 4 / 3;
  background: var(--color-yellow);
  color: var(--color-red);
  border: 2px dashed var(--color-red);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 700;
}

#visit a {
  color: var(--color-red);
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.google-icon {
  width: 1.1em;
  height: 1.1em;
  flex-shrink: 0;
}

#visit a:hover {
  text-decoration: underline;
}

footer {
  background: var(--color-red);
  color: white;
  text-align: center;
  padding: 1.5rem 1rem;
  font-size: 0.85rem;
}
