/* Base Styles */
:root {
  --bg: #F7F4EF;
  --panel: #FFFFFF;
  --ink: #2B2B2B;
  --muted: #6B6B6B;
  --accent: #B08D57;
  --accent-ink: #2B2B2B;
  --border: #E6E0D6;
  --radius: 16px;
  --shadow: 0 6px 24px rgba(0,0,0,.06);
  --font-body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-display: "Playfair Display", Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1.display {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1.05;
  font-weight: 400;
  margin: 0 0 .25em 0;
}

.t-center {
  text-align: center;
}

.site-main {
  min-height: calc(100vh - 100px);
  padding: 40px 0;
}

.site-footer {
  background: var(--bg);
  padding: 2rem 0;
  margin-top: 0.1rem;
}

.site-footer .container p:first-child {
  margin-bottom: 1.5rem;
}

.site-footer .container p.muted {
  margin: 0;
}

.small {
  font-size: 0.9rem;
  line-height: 1.6;
}

.muted {
  color: var(--muted);
}

a {
  color: var(--ink);
  text-decoration: underline;
}

a:hover {
  opacity: 0.7;
}

.beck-smile-spot {
  display: flex;
  justify-content: center;
}

.panel {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
}

.beck-smile-mark {
  width: 72px;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  h1.display {
    font-size: 42px;
  }
  
  .beck-smile-mark {
    width: 56px;
  }
}

