:root {
  --apricot: #f4b487;
  --apricot-light: #f9d3b8;
  --teal: #174f4d;
  --teal-dark: #103b39;
  --raspberry: #b6385e;
  --raspberry-dark: #842340;
  --paper: #fffdf9;
  --ink: #203634;
  --muted: #6d605c;
  --line: #b98f78;
  --shell: 1160px;
  --pill: 999px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--apricot);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.62;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--teal-dark);
  text-underline-offset: 0.22em;
  text-decoration-thickness: 1px;
}

a:hover {
  color: var(--raspberry-dark);
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid var(--raspberry);
  outline-offset: 3px;
}

button,
input {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3,
.wordmark,
.footer-brand {
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", Arial, Helvetica, sans-serif;
  color: var(--teal-dark);
  font-weight: 700;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 11ch;
  margin-bottom: 1rem;
  font-size: clamp(3rem, 6.5vw, 5.8rem);
  line-height: 0.96;
}

h2 {
  margin-bottom: 0.75rem;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 1;
}

p:last-child {
  margin-bottom: 0;
}

.shell {
  width: min(calc(100% - 2rem), var(--shell));
  margin-inline: auto;
}

.narrow {
  max-width: 840px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 1rem;
  left: 1rem;
  padding: 0.75rem 1rem;
  border-radius: var(--pill);
  background: var(--teal-dark);
  color: var(--paper);
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(244, 180, 135, 0.98);
}

.header-inner {
  display: flex;
  min-height: 80px;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.wordmark {
  color: var(--teal-dark);
  font-size: 1.65rem;
  text-decoration: none;
}

.primary-nav,
.footer-nav,
.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.9rem;
}

.primary-nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0.55rem 0;
  color: var(--teal-dark);
  font-size: 0.9rem;
  font-weight: 850;
  text-decoration: none;
}

.primary-nav .nav-action {
  padding-inline: 1rem;
  border: 1px solid var(--teal-dark);
  border-radius: var(--pill);
  background: var(--paper);
}

.primary-nav .nav-action:hover {
  background: var(--teal);
  color: var(--paper);
}

.welcome {
  padding-block: clamp(2.2rem, 4vw, 3.8rem);
  border-bottom: 1px solid var(--line);
}

.welcome-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
}

.welcome-food {
  margin: 0;
}

.welcome-food img {
  aspect-ratio: 1;
  border: 9px solid var(--paper);
  border-radius: 50%;
}

.welcome-copy > p:not(.eyebrow):not(.image-note) {
  max-width: 580px;
  color: var(--muted);
  font-size: 1.05rem;
}

.welcome-coffee {
  width: min(100%, 480px);
  margin: 1.35rem 0 0 3.5rem;
}

.welcome-coffee img {
  aspect-ratio: 16 / 10;
  border: 8px solid var(--paper);
}

figcaption,
.image-note {
  margin-top: 0.5rem;
  color: var(--muted);
  font-size: 0.76rem;
}

.eyebrow {
  margin-bottom: 0.7rem;
  color: var(--raspberry-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1rem;
  border: 1px solid var(--teal-dark);
  border-radius: var(--pill);
  font-weight: 850;
  line-height: 1.15;
  text-decoration: none;
  transition: transform 150ms ease, background-color 150ms ease, color 150ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--teal);
  color: var(--paper);
}

.button-primary:hover {
  background: var(--teal-dark);
  color: var(--paper);
}

.button-secondary {
  background: var(--paper);
  color: var(--teal-dark);
}

.button-secondary:hover {
  background: var(--apricot-light);
}

.cafe-section {
  padding-block: clamp(3.1rem, 6vw, 5rem);
  background: var(--paper);
}

.cafe-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.cafe-copy p:not(.eyebrow) {
  color: var(--muted);
}

.availability-note {
  margin-top: 1.2rem;
  padding-top: 0.9rem;
  border-top: 1px solid #d9c2b3;
  font-size: 0.88rem;
}

.cafe-photo {
  margin: 0;
}

.cafe-photo img {
  aspect-ratio: 5 / 4;
  border: 8px solid var(--apricot-light);
}

.catering-section {
  padding-block: clamp(3.1rem, 6vw, 4.8rem);
  background: var(--teal-dark);
  color: var(--paper);
}

.catering-grid {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.catering-photo {
  margin: 0;
}

.catering-photo img {
  aspect-ratio: 4 / 3;
  border: 8px solid var(--paper);
}

.catering-photo figcaption {
  color: #e4d8d3;
}

.catering-copy h2 {
  color: var(--paper);
}

.eyebrow-light {
  color: #ffb8ca;
}

.catering-copy p:not(.eyebrow) {
  color: #e8deda;
}

.catering-note {
  margin-top: 1rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255,255,255,0.25);
  font-size: 0.86rem;
}

.location-section {
  padding-block: clamp(3rem, 5vw, 4.4rem);
  background: var(--apricot-light);
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1.2fr);
  gap: clamp(2rem, 7vw, 6rem);
  align-items: center;
}

.location-card {
  display: grid;
  gap: 0.15rem;
  padding: 1.2rem;
  border: 1px solid var(--teal-dark);
  background: var(--paper);
  font-style: normal;
}

.location-card strong {
  margin-bottom: 0.25rem;
}

.location-card .button {
  justify-self: start;
  margin-top: 0.9rem;
}

.location-card p {
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.84rem;
}

.button-location {
  background: var(--raspberry);
  color: var(--paper);
}

.button-location:hover {
  background: var(--raspberry-dark);
  color: var(--paper);
}

.newsletter {
  padding-block: clamp(3rem, 5vw, 4.3rem);
  background: var(--paper);
}

.newsletter-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 1.18fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.newsletter p:not(.eyebrow):not(.form-note) {
  color: var(--muted);
}

.newsletter-form {
  display: grid;
  gap: 0.9rem;
}

.field {
  display: grid;
  gap: 0.35rem;
}

.field label {
  font-weight: 850;
}

.field input[type="email"] {
  width: 100%;
  min-height: 48px;
  padding: 0.72rem 0.8rem;
  border: 1px solid #b9a59b;
  border-radius: 12px;
  background: #fffdf9;
  color: var(--ink);
}

.field input[type="email"]:disabled {
  background: #eee9e4;
  color: #6e6965;
  cursor: not-allowed;
}

.consent-row {
  display: grid;
  grid-template-columns: 1.15rem minmax(0, 1fr);
  gap: 0.7rem;
  align-items: start;
  color: var(--muted);
  font-size: 0.88rem;
}

.consent-row input {
  width: 1.15rem;
  height: 1.15rem;
  margin: 0.18rem 0 0;
}

.button-disabled,
.button-disabled:disabled {
  border-color: #b5aaa4;
  background: #e5dfda;
  color: #69635f;
  cursor: not-allowed;
  transform: none;
}

.form-note {
  color: var(--muted);
  font-size: 0.82rem;
}

.site-footer {
  padding-block: 1.8rem;
  border-top: 1px solid var(--line);
  background: var(--apricot);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.footer-brand {
  margin-bottom: 0.15rem;
  font-size: 1rem;
}

.site-footer p {
  margin-bottom: 0.15rem;
  font-size: 0.88rem;
}

.footer-nav {
  justify-content: flex-end;
  align-content: start;
}

.footer-nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
}

.legal-main {
  background: var(--paper);
}

.legal-intro {
  padding-block: clamp(3rem, 6vw, 4.8rem);
  border-bottom: 1px solid var(--line);
  background: var(--apricot);
}

.legal-intro h1 {
  max-width: 13ch;
}

.legal-intro p:last-child {
  max-width: 68ch;
  color: var(--muted);
}

.legal-section {
  padding-block: clamp(3.2rem, 6vw, 5rem);
  scroll-margin-top: 1rem;
}

.legal-alt {
  border-block: 1px solid var(--line);
  background: #fff3eb;
}

.legal-copy h2 {
  margin-bottom: 2rem;
}

.legal-copy h3 {
  margin-top: 1.65rem;
  color: var(--teal-dark);
}

.legal-copy p {
  color: var(--muted);
}

.legal-note {
  margin-top: 2rem;
  padding: 1rem 1.1rem;
  border-left: 5px solid var(--raspberry);
  background: #fff0f4;
  color: var(--ink) !important;
}

.legal-return {
  padding-block: 2.4rem;
}

@media (max-width: 900px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 1rem;
  }

  .primary-nav {
    width: 100%;
  }

  .welcome-grid,
  .cafe-grid,
  .catering-grid,
  .location-grid,
  .newsletter-grid {
    grid-template-columns: 1fr;
  }

  .welcome-food {
    max-width: 620px;
    margin-inline: auto;
  }

  .welcome-coffee {
    margin-left: 0;
  }

  .footer-grid {
    flex-direction: column;
  }

  .footer-nav {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(calc(100% - 1.3rem), var(--shell));
  }

  .primary-nav {
    gap: 0.3rem 0.7rem;
  }

  .primary-nav a {
    min-height: 46px;
    font-size: 0.9rem;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.4rem);
  }

  .welcome-food {
    max-width: 100%;
  }

  .welcome-food img {
    border-width: 6px;
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button-row .button {
    width: 100%;
  }

  .cafe-photo img,
  .catering-photo img {
    border-width: 6px;
  }

  .footer-nav {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
