:root {
  --coffee: #52210c;
  --coffee-deep: #2d140a;
  --caramel: #c97819;
  --cream: #fffaf2;
  --paper: #ffffff;
  --ink: #221812;
  --line: rgba(82, 33, 12, 0.18);
  --max: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  line-height: 1.6;
}

a { color: inherit; }

.site-header {
  width: min(calc(100% - 40px), var(--max));
  min-height: 112px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand { display: block; width: 88px; height: 88px; overflow: hidden; border-radius: 50%; }
.brand img { width: 100%; height: 100%; object-fit: cover; display: block; }

nav { display: flex; gap: 28px; font-size: 0.84rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
nav a, .footer-links a { text-decoration-thickness: 1px; text-underline-offset: 5px; }

.hero {
  width: min(calc(100% - 40px), 940px);
  min-height: 650px;
  margin: 0 auto;
  padding: 100px 0 116px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-mark, .eyebrow {
  color: var(--caramel);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

h1, h2, h3, .strapline {
  margin-top: 0;
  color: var(--coffee-deep);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.03;
}

.hero h1 { margin: 22px 0 20px; font-size: clamp(3.6rem, 10vw, 7.5rem); max-width: 900px; }
.strapline { margin-bottom: 26px; font-size: clamp(1.4rem, 4vw, 2.25rem); letter-spacing: 0.01em; }
.strapline span { padding: 0 0.16em; color: var(--caramel); }
.intro { max-width: 570px; margin: 0 0 34px; font-size: clamp(1.05rem, 2vw, 1.3rem); }

.button {
  display: inline-flex;
  min-height: 58px;
  padding: 0 32px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--coffee);
  border-radius: 999px;
  color: #fff;
  background: var(--coffee);
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover, .button:focus-visible { transform: translateY(-2px); background: var(--caramel); border-color: var(--caramel); }

.locations { padding: 112px max(20px, calc((100vw - var(--max)) / 2)); background: var(--paper); }
.locations > h2 { max-width: 680px; margin: 12px 0 58px; font-size: clamp(2.35rem, 6vw, 4.7rem); }
.location-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.location { min-height: 190px; padding: 26px 28px; border-right: 1px solid var(--line); display: flex; flex-direction: column; justify-content: space-between; }
.location:first-child { border-left: 1px solid var(--line); }
.location span { color: var(--caramel); font-size: 0.78rem; font-weight: 800; }
.location h3 { margin: 0; font-size: clamp(1.8rem, 3vw, 2.65rem); }

.order-strip { padding: 76px max(20px, calc((100vw - var(--max)) / 2)); display: flex; align-items: center; justify-content: space-between; gap: 28px; color: #fff; background: var(--coffee); }
.order-strip p { margin: 0; font-size: clamp(2rem, 5vw, 4rem); font-weight: 800; letter-spacing: -0.035em; line-height: 1.05; }
.button-light { color: var(--coffee); background: var(--cream); border-color: var(--cream); flex-shrink: 0; }

.site-footer { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; padding: 70px 0 40px; display: grid; grid-template-columns: 1fr auto; gap: 42px; }
.site-footer strong { color: var(--coffee-deep); font-size: 1.2rem; }
.site-footer p { margin: 6px 0 0; }
.footer-links { display: flex; gap: 24px; font-weight: 700; }
.legal { grid-column: 1 / -1; padding-top: 28px; border-top: 1px solid var(--line); font-size: 0.78rem; }

.policy-wrap { padding: 86px 20px 120px; background: var(--paper); }
.policy { width: min(100%, 760px); margin: 0 auto; }
.policy h1 { margin: 14px 0 8px; font-size: clamp(3rem, 8vw, 5.6rem); }
.policy-date { margin: 0 0 58px; color: #6c5a50; }
.policy h2 { margin: 46px 0 12px; font-size: clamp(1.5rem, 3vw, 2rem); letter-spacing: -0.02em; }
.policy p { font-size: 1.05rem; }
.policy a { color: var(--coffee); font-weight: 700; }

@media (max-width: 680px) {
  .site-header { min-height: 96px; }
  .brand { width: 72px; height: 72px; }
  nav { gap: 16px; font-size: 0.7rem; }
  .hero { min-height: 590px; padding: 78px 0 92px; }
  .locations { padding-top: 82px; padding-bottom: 82px; }
  .location-grid { grid-template-columns: 1fr; }
  .location { min-height: 130px; border-left: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .order-strip { align-items: flex-start; flex-direction: column; }
  .site-footer { grid-template-columns: 1fr; }
  .legal { grid-column: 1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button { transition: none; }
}
