/* Change these colors to update the website's theme. */
:root { --green: #102e25; --cream: #faf4e7; --gold: #e9cc90; --muted: #bdc9c1; }
* { box-sizing: border-box; }
body { margin: 0; background: var(--green); color: var(--cream); font-family: Arial, Helvetica, sans-serif; }
.page { width: min(1440px, 100%); margin: auto; padding: 0 6%; }
header { min-height: 112px; display: flex; align-items: center; justify-content: space-between; gap: 24px; border-bottom: 1px solid #ffffff24; }
.brand { color: var(--cream); font-family: Georgia, 'Times New Roman', serif; font-size: 30px; text-decoration: none; letter-spacing: -1px; }
.brand span { color: var(--gold); }
.brand:focus-visible { outline: 2px solid var(--gold); outline-offset: 8px; }
.header-note { color: var(--muted); font-size: 14px; }
main { min-height: calc(100svh - 198px); display: grid; grid-template-columns: 1.1fr 1fr; align-items: center; gap: 7%; padding: 64px 0; }
.eyebrow { color: var(--gold); font-size: 12px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; line-height: 1.7; margin: 0 0 28px; }
h1 { font-family: Georgia, 'Times New Roman', serif; font-size: clamp(48px, 5.5vw, 80px); line-height: 1.1; letter-spacing: -2px; font-weight: 400; margin: 0 0 28px; }
h1 em { color: var(--gold); font-weight: 400; }
.description { max-width: 400px; font-size: 17px; line-height: 1.85; color: var(--muted); margin: 0; }
.announcement { display: flex; align-items: center; gap: 16px; margin-top: 38px; }
.line { width: 34px; height: 1px; background: var(--gold); flex-shrink: 0; }
.announcement p { font-size: 15px; line-height: 1.7; margin: 0; }
.announcement strong { font-weight: 400; color: var(--gold); }
.food { margin: 0; position: relative; }
.food img { display: block; width: 100%; height: clamp(380px, 43vw, 570px); object-fit: cover; border-radius: 48% 48% 2px 2px; }
.food figcaption { text-align: right; color: var(--gold); font-family: Georgia, 'Times New Roman', serif; font-style: italic; font-size: 16px; padding-top: 18px; }
footer { min-height: 86px; border-top: 1px solid #ffffff24; display: flex; justify-content: space-between; align-items: center; gap: 20px; color: var(--muted); font-size: 12px; line-height: 1.7; }
@media (min-width: 1600px) { main { min-height: 720px; } }
@media (max-width: 760px) {
  .page { padding: 0 7%; }
  header { min-height: 86px; }
  .brand { font-size: 27px; }
  .header-note { display: none; }
  main { grid-template-columns: 1fr; gap: 40px; padding: 48px 0 36px; }
  h1 { font-size: clamp(43px, 10vw, 68px); letter-spacing: -1.5px; }
  .eyebrow { font-size: 12px; letter-spacing: 1.7px; margin-bottom: 22px; }
  .description { max-width: 100%; font-size: 16px; }
  .announcement { margin-top: 26px; }
  .food img { height: 360px; border-radius: 44% 44% 2px 2px; }
  footer { padding: 24px 0; flex-direction: column; align-items: flex-start; gap: 5px; }
}
