:root {
  color-scheme: light;

  --canvas: #faf5ed;
  --surface: #fefbf7;
  --cream: #fcf7ed;
  --sand: #dbbd99;

  --ink: #291c1a;
  --mocha: #664833;
  --muted: rgba(38, 22, 18, 0.58);

  --accent: #ad6b3d;
  --accent-strong: #d18c52;
  --seasonal: #d98533;

  --outline: rgba(41, 28, 26, 0.08);
  --card-shadow: 0 14px 38px rgba(41, 28, 26, 0.08);

  --radius-card: 28px;
  --radius-hero: 34px;
  --radius-input: 18px;

  --font-sans: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-serif: ui-serif, "New York", "Iowan Old Style", "Apple Garamond", "Baskerville", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--canvas);
  background-image:
    radial-gradient(circle at 12% 8%, rgba(219, 189, 153, 0.28), transparent 48%),
    radial-gradient(circle at 92% 0%, rgba(209, 140, 82, 0.16), transparent 42%),
    radial-gradient(circle at 50% 120%, rgba(102, 72, 51, 0.08), transparent 55%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.shell {
  width: min(100%, 720px);
  margin: 0 auto;
  padding: 40px 22px 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
}

.brand a {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
}

.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #3a241c 0%, #4a3124 100%);
  color: #fff7ef;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: var(--card-shadow);
}

.brand-name {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
}

.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 12px;
}

h1 {
  font-family: var(--font-serif);
  font-size: 36px;
  line-height: 1.12;
  font-weight: 700;
  margin: 0 0 14px;
  letter-spacing: -0.01em;
  color: var(--ink);
}

h2 {
  font-size: 20px;
  line-height: 1.3;
  font-weight: 700;
  margin: 36px 0 12px;
  color: var(--ink);
}

p {
  margin: 0 0 14px;
  color: var(--mocha);
}

ul {
  margin: 0 0 14px;
  padding-left: 22px;
  color: var(--mocha);
}

li {
  margin-bottom: 6px;
}

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

a:hover {
  color: var(--accent-strong);
}

strong {
  color: var(--ink);
}

.effective {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 28px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--outline);
  border-radius: var(--radius-card);
  padding: 28px;
  box-shadow: var(--card-shadow);
  margin-bottom: 18px;
}

.card h2:first-child {
  margin-top: 0;
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--outline);
  border-radius: var(--radius-card);
  padding: 28px;
  box-shadow: var(--card-shadow);
}

.contact-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--outline);
}

.contact-row:first-of-type {
  border-top: none;
  padding-top: 0;
}

.contact-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-value {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  text-align: right;
}

.contact-value a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--outline);
}

.contact-value a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table th,
.hours-table td {
  padding: 10px 0;
  text-align: left;
  font-size: 16px;
  color: var(--mocha);
  border-top: 1px solid var(--outline);
}

.hours-table tr:first-child th,
.hours-table tr:first-child td {
  border-top: none;
}

.hours-table td {
  text-align: right;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
}

.pill-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 55%, var(--sand) 100%);
  color: #fff7ef;
  box-shadow: 0 10px 24px rgba(173, 107, 61, 0.28);
  transition: transform 120ms ease, box-shadow 120ms ease;
}

.pill-button:hover {
  color: #fff7ef;
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(173, 107, 61, 0.32);
}

.pill-button.secondary {
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--outline);
  box-shadow: none;
}

.pill-button.secondary:hover {
  color: var(--ink);
  border-color: var(--accent);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.footer {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--outline);
  font-size: 13px;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  justify-content: space-between;
  align-items: center;
}

.footer a {
  color: var(--mocha);
  text-decoration: none;
  font-weight: 600;
}

.footer a:hover {
  color: var(--accent);
}

@media (max-width: 520px) {
  .shell { padding: 28px 18px 56px; }
  h1 { font-size: 30px; }
  .card, .contact-card { padding: 22px; }
  .contact-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .contact-value { text-align: left; }
}
