:root {
  --ink: #3b2417;
  --soft-ink: #6f4a31;
  --paper: #fbf4e7;
  --paper-deep: #f1dec0;
  --honey: #d79a42;
  --bread: #a8692d;
  --rose: #d88478;
  --sage: #9cae72;
  --shadow: 0 18px 45px rgba(74, 42, 20, 0.18);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Yu Gothic", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 20%, rgba(215, 154, 66, 0.13), transparent 24rem),
    radial-gradient(circle at 80% 10%, rgba(216, 132, 120, 0.14), transparent 20rem),
    linear-gradient(90deg, rgba(90, 54, 27, 0.035) 1px, transparent 1px),
    linear-gradient(var(--paper), #fff8ee);
  background-size: auto, auto, 22px 22px, auto;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    linear-gradient(30deg, rgba(92, 53, 20, 0.05) 12%, transparent 12.5%, transparent 87%, rgba(92, 53, 20, 0.05) 87.5%),
    linear-gradient(150deg, rgba(92, 53, 20, 0.04) 12%, transparent 12.5%, transparent 87%, rgba(92, 53, 20, 0.04) 87.5%);
  background-size: 16px 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(18px, 5vw, 58px);
  background: rgba(251, 244, 231, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(118, 75, 36, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--ink);
  text-decoration: none;
  font-size: clamp(1.4rem, 3vw, 2.15rem);
  letter-spacing: 0;
  white-space: nowrap;
}

.brand i,
.bread-mark {
  width: 54px;
  height: 18px;
  border: 2px solid var(--honey);
  border-radius: 50%;
  position: relative;
  transform: rotate(-5deg);
}

.brand i::before,
.bread-mark::before {
  content: "";
  position: absolute;
  inset: 3px 10px;
  border-top: 2px solid var(--honey);
  transform: rotate(12deg);
}

.nav {
  display: flex;
  gap: clamp(18px, 3.2vw, 48px);
  align-items: center;
}

.nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.96rem;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.nav a.is-active,
.nav a:hover {
  border-color: var(--honey);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  padding: 8px;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 7px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(260px, 34%) 1fr minmax(220px, 26%);
  gap: 16px;
  align-items: center;
  padding: 34px clamp(18px, 5vw, 58px) 42px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 88px;
  background: var(--paper);
  clip-path: polygon(0 0, 100% 0, 100% 70%, 93% 76%, 84% 69%, 73% 84%, 61% 70%, 51% 78%, 41% 68%, 29% 79%, 18% 69%, 7% 78%, 0 70%);
  z-index: 2;
}

.paper-note,
.card,
.contact-card {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 248, 236, 0.9)),
    var(--paper);
  border: 1px solid rgba(122, 82, 42, 0.16);
  box-shadow: var(--shadow);
}

.hero-note {
  position: relative;
  z-index: 4;
  padding: clamp(24px, 4vw, 44px);
  transform: rotate(-3deg);
  border-radius: 4px;
}

.hero-note::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 48%;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #b94f31;
  box-shadow: inset 0 4px 7px rgba(255, 255, 255, 0.3), 0 4px 10px rgba(74, 42, 20, 0.26);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--bread);
  font-weight: 700;
}

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

h1 {
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 1.38;
  font-weight: 500;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  font-weight: 500;
  letter-spacing: 0;
}

.hero-note p:last-of-type,
.season-copy p,
.card p,
.contact-card p {
  line-height: 1.9;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 22px;
  border: 0;
  border-radius: 4px;
  background: var(--bread);
  color: white;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 10px 18px rgba(105, 65, 30, 0.18);
}

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

.button.small {
  min-height: 40px;
  padding-inline: 18px;
  font-size: 0.9rem;
}

.hero-photo {
  margin: 0;
  position: relative;
  z-index: 1;
  grid-column: 2 / 4;
  grid-row: 1;
  align-self: stretch;
  border-radius: 8px;
  overflow: hidden;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  display: block;
}

.hero-note {
  grid-column: 1 / 2;
  grid-row: 1;
}

.chalkboard {
  z-index: 5;
  grid-column: 2 / 3;
  grid-row: 1;
  justify-self: end;
  align-self: end;
  width: min(250px, 70%);
  margin: 0 20px 46px 0;
  padding: 22px;
  color: #fff8e7;
  background: #332f29;
  border: 12px solid #7a4b24;
  box-shadow: var(--shadow);
  transform: rotate(-2deg);
}

.chalkboard p {
  border-bottom: 1px solid rgba(255, 248, 231, 0.4);
  padding-bottom: 8px;
  margin-bottom: 10px;
}

.chalkboard ul {
  margin: 0;
  padding-left: 18px;
  line-height: 1.8;
}

.postcard {
  margin: 0;
  background: #fffdf6;
  padding: 10px;
  box-shadow: var(--shadow);
  border-radius: 6px;
  position: relative;
}

.postcard::before,
.postcard::after {
  content: "";
  position: absolute;
  width: 96px;
  height: 28px;
  background: rgba(216, 132, 120, 0.72);
  opacity: 0.9;
  transform: rotate(7deg);
}

.postcard::before {
  top: -12px;
  left: 26px;
}

.postcard::after {
  right: 24px;
  bottom: -10px;
  background: rgba(156, 174, 114, 0.72);
  transform: rotate(-8deg);
}

.postcard img {
  width: 100%;
  display: block;
  border-radius: 3px;
}

.town-card {
  z-index: 5;
  grid-column: 3 / 4;
  grid-row: 1;
  align-self: start;
  transform: rotate(5deg);
  margin-top: 54px;
}

.gingham {
  height: 42px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.48) 50%, transparent 50%),
    linear-gradient(rgba(255, 255, 255, 0.48) 50%, transparent 50%),
    #eac15d;
  background-size: 28px 28px;
  border-block: 1px solid rgba(130, 79, 32, 0.12);
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  padding: 42px clamp(18px, 5vw, 58px);
}

.card {
  padding: clamp(22px, 3vw, 32px);
  border-radius: 8px;
  min-height: 280px;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px dashed rgba(118, 75, 36, 0.3);
  margin-bottom: 20px;
}

.section-title h2 {
  font-size: clamp(1.35rem, 2.3vw, 1.9rem);
}

.doodle {
  color: var(--honey);
  font-size: 0.78rem;
  text-transform: uppercase;
  font-family: "Trebuchet MS", sans-serif;
}

.news-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.news-list li {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px dashed rgba(118, 75, 36, 0.2);
  line-height: 1.6;
}

.date-pill {
  display: inline-block;
  padding: 6px 16px;
  background: #f3d18a;
  border-radius: 999px;
}

.event-message,
.season-message {
  min-height: 1.6em;
  margin-top: 14px;
  color: var(--bread);
  font-weight: 700;
}

.text-link {
  color: var(--bread);
  font-weight: 700;
  text-decoration: none;
}

dl {
  display: grid;
  gap: 10px;
}

dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px dashed rgba(118, 75, 36, 0.2);
  padding-bottom: 8px;
}

dt {
  color: var(--soft-ink);
}

dd {
  margin: 0;
  font-weight: 700;
}

.season {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(26px, 6vw, 70px);
  align-items: center;
  padding: 38px clamp(18px, 5vw, 58px) 68px;
}

.season-copy {
  padding: clamp(18px, 4vw, 40px);
}

.season-photo {
  transform: rotate(-3deg);
}

.contact-card {
  width: min(850px, calc(100% - 36px));
  margin: 0 auto 58px;
  padding: clamp(26px, 5vw, 48px);
  text-align: center;
  border-radius: 8px;
}

.phone {
  display: inline-block;
  color: var(--bread);
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  font-weight: 700;
  text-decoration: none;
}

footer {
  padding: 28px;
  text-align: center;
  color: var(--soft-ink);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-note.reveal.is-visible {
  transform: rotate(-3deg);
}

.town-card.reveal.is-visible {
  transform: rotate(5deg);
}

.season-photo.reveal.is-visible {
  transform: rotate(-3deg);
}

@media (max-width: 980px) {
  .menu-button {
    display: block;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 16px;
    background: var(--paper);
    box-shadow: var(--shadow);
    border-radius: 8px;
  }

  .nav.is-open {
    display: flex;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-photo,
  .hero-note,
  .chalkboard,
  .town-card {
    grid-column: 1;
    grid-row: auto;
  }

  .hero-photo img {
    min-height: 360px;
  }

  .hero-note {
    transform: rotate(0);
  }

  .chalkboard,
  .town-card {
    width: 100%;
    margin: 0;
    transform: rotate(0);
  }

  .content-grid,
  .season {
    grid-template-columns: 1fr;
  }

  .hero-note.reveal.is-visible,
  .town-card.reveal.is-visible,
  .season-photo.reveal.is-visible {
    transform: translateY(0);
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 16px;
  }

  .brand {
    font-size: 1.25rem;
  }

  .brand i {
    display: none;
  }

  .hero {
    padding-inline: 14px;
  }

  .content-grid,
  .season {
    padding-inline: 14px;
  }

  .news-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
