:root {
  --paper: #efe2c8;
  --paper-deep: #dfc79f;
  --ink: #18252f;
  --lava: #f05d23;
  --lava-deep: #aa2e0e;
  --sun: #ffbf4d;
  --sea: #1f8f98;
  --sea-deep: #0e5964;
  --sand: #c8945d;
  --shadow: rgba(31, 18, 12, 0.24);
  --line: rgba(24, 37, 47, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  background:
    radial-gradient(circle at top, rgba(240, 93, 35, 0.32), transparent 26%),
    radial-gradient(circle at 20% 20%, rgba(31, 143, 152, 0.22), transparent 28%),
    linear-gradient(180deg, #f4e7cf 0%, #e6cfaa 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.25) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 37, 47, 0.06) 1px, transparent 1px);
  background-size: 100% 3px, 3px 100%;
  mix-blend-mode: multiply;
}

.page-shell {
  width: min(1180px, calc(100% - 2rem));
  margin: 1.25rem auto;
  border: 2px solid rgba(24, 37, 47, 0.45);
  box-shadow: 0 20px 60px var(--shadow);
  background:
    linear-gradient(180deg, rgba(255, 248, 230, 0.94), rgba(239, 226, 200, 0.96)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
  background-blend-mode: multiply;
}

.site-header,
.site-footer,
main {
  position: relative;
  z-index: 1;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem 1.5rem 0;
}

.brand {
  display: inline-grid;
  color: var(--ink);
  text-decoration: none;
  text-transform: uppercase;
}

.brand-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
}

.brand-main {
  margin-top: 0.2rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.3rem, 4vw, 4rem);
  letter-spacing: 0.04em;
  color: var(--lava);
  line-height: 0.9;
}

.brand-sub {
  margin-top: -0.1rem;
  font-family: "Permanent Marker", cursive;
  font-size: clamp(1rem, 1.6vw, 1.45rem);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.site-nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.88rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.95rem 1.4rem;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.08em;
  border: 2px solid rgba(24, 37, 47, 0.28);
  box-shadow: 0 6px 0 rgba(24, 37, 47, 0.15);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 0 rgba(24, 37, 47, 0.12);
}

.button-primary {
  color: #fff8ec;
  background: linear-gradient(180deg, #ff8a35 0%, var(--lava) 60%, var(--lava-deep) 100%);
}

.button-secondary {
  color: #f4fffc;
  background: linear-gradient(180deg, #33b9c0 0%, var(--sea) 58%, var(--sea-deep) 100%);
}

.header-cta {
  flex-shrink: 0;
}

main {
  padding: 1rem 1.5rem 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 460px);
  gap: 2rem;
  align-items: center;
  padding: 1.25rem 0 1.5rem;
}

.eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--lava-deep);
}

.hero h1,
.section-heading h2 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  line-height: 0.93;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero h1 {
  font-size: clamp(2.2rem, 4.4vw, 4rem);
  max-width: 16ch;
}

.hero-text {
  max-width: 34rem;
  margin: 1rem 0 0;
  font-size: 1.05rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.hero-notes {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.hero-notes li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 500;
}

.hero-notes li::before {
  content: "✦";
  color: var(--sea-deep);
  font-size: 1rem;
}

.hero-art {
  position: relative;
}

.art-card {
  padding: 0.9rem;
  background:
    linear-gradient(180deg, rgba(24, 37, 47, 0.08), rgba(24, 37, 47, 0.18)),
    linear-gradient(180deg, rgba(255, 250, 239, 0.78), rgba(221, 198, 155, 0.78));
  border: 2px solid rgba(24, 37, 47, 0.34);
  box-shadow: 0 20px 35px rgba(43, 20, 11, 0.22);
  transform: rotate(-2deg);
}

.art-card img {
  display: block;
  width: 100%;
  height: auto;
  border: 2px solid rgba(24, 37, 47, 0.38);
}

.stamp {
  position: absolute;
  padding: 0.65rem 0.85rem;
  font-family: "Permanent Marker", cursive;
  color: #fffaf2;
  background: rgba(24, 37, 47, 0.9);
  border: 2px solid rgba(255, 245, 226, 0.45);
  box-shadow: 0 10px 20px rgba(24, 37, 47, 0.16);
}

.stamp-top {
  top: -1rem;
  right: 1rem;
  transform: rotate(5deg);
}

.stamp-bottom {
  left: -1rem;
  bottom: 1rem;
  transform: rotate(-6deg);
}

.marquee {
  overflow: hidden;
  border-block: 2px solid rgba(24, 37, 47, 0.4);
  background: linear-gradient(90deg, rgba(240, 93, 35, 0.1), rgba(31, 143, 152, 0.12));
}

.marquee-track {
  display: flex;
  gap: 1.25rem;
  padding: 0.9rem 0;
  min-width: max-content;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.55rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: marquee 24s linear infinite;
}

.marquee-track span::after {
  content: "✦";
  margin-left: 1.25rem;
  color: var(--lava);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.section-grid,
.offerings,
.visit {
  padding: 2.75rem 0;
}

.section-heading {
  display: grid;
  gap: 0.25rem;
  width: fit-content;
  max-width: 100%;
}

.section-heading h2 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  max-width: 12ch;
}

.story.section-grid,
.boards.section-grid {
  display: grid;
  grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
  gap: 1rem 1.5rem;
  align-items: start;
}

.offerings {
  display: grid;
  grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.offerings > .section-heading {
  margin-bottom: 0;
  position: sticky;
  top: 1rem;
}

.visit-hero {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  gap: 1rem 1.5rem;
  align-items: end;
  margin-bottom: 0.85rem;
}

.visit-hero > .section-heading {
  margin-bottom: 0;
}

.story.section-grid {
  grid-template-areas:
    "heading story"
    "heading quote";
}

.story.section-grid > .section-heading {
  grid-area: heading;
  margin-bottom: 0;
}

.story.section-grid > .story-card {
  grid-area: story;
}

.story.section-grid > .quote-card {
  grid-area: quote;
  align-self: start;
  max-width: 100%;
}

.boards.section-grid {
  grid-template-rows: auto 1fr;
  grid-template-areas:
    "heading boards"
    "conditions boards";
}

.boards.section-grid > .section-heading {
  grid-area: heading;
  margin-bottom: 0;
}

.boards.section-grid > .board-list {
  grid-area: boards;
  align-self: stretch;
  grid-auto-rows: 1fr;
}

.boards.section-grid > .conditions-card {
  grid-area: conditions;
  align-self: start;
}

.boards .section-heading h2 {
  max-width: 14ch;
}

.story .section-heading h2 {
  max-width: 11ch;
}

.visit .section-heading h2 {
  max-width: 13ch;
}

.paper-card,
.quote-card,
.offer-card,
.board-card,
.conditions-card,
.review-card {
  border: 2px solid rgba(24, 37, 47, 0.32);
  box-shadow: 0 10px 24px rgba(44, 24, 14, 0.1);
}

.paper-card,
.offer-card,
.board-card,
.conditions-card,
.visit-card {
  background:
    linear-gradient(180deg, rgba(255, 250, 239, 0.92), rgba(231, 209, 171, 0.88)),
    rgba(255, 255, 255, 0.6);
}

.story-card,
.visit-card {
  padding: 1.4rem;
  font-size: 1.05rem;
  line-height: 1.75;
}

.quote-card {
  padding: 1.5rem;
  background: linear-gradient(180deg, rgba(18, 86, 97, 0.94), rgba(9, 56, 62, 0.94));
  color: #f3eee3;
}

.quote-mark {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: 5rem;
  line-height: 0.8;
}

.quote-text {
  margin: 0.35rem 0 1rem;
  font-size: 1.2rem;
  line-height: 1.6;
}

.quote-credit {
  margin: 0;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(243, 238, 227, 0.76);
}

.card-grid,
.board-list {
  display: grid;
  gap: 1rem;
}

.card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.offer-card,
.board-card {
  padding: 1.3rem;
}

.card-tag {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(31, 143, 152, 0.12);
  color: var(--sea-deep);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.offer-card h3,
.board-card h3 {
  margin: 0 0 0.6rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.offer-card p,
.board-card p,
.conditions-card li,
.review-text {
  margin: 0;
  line-height: 1.7;
}

.offer-card strong {
  display: inline-block;
  margin-top: 1rem;
  font-size: 1.1rem;
  color: var(--lava-deep);
}

.conditions-card {
  padding: 1.35rem;
  background: linear-gradient(180deg, rgba(240, 93, 35, 0.16), rgba(255, 191, 77, 0.18));
}

.conditions-label,
.visit-label {
  margin: 0 0 0.55rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--lava-deep);
}

.conditions-card ul {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.75rem;
}

.visit-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: start;
}

.review-stack {
  display: grid;
  gap: 1rem;
}

.review-card .eyebrow {
  color: var(--sun);
}

.visit-poster {
  display: grid;
  grid-template-columns: minmax(180px, 280px) minmax(220px, 1fr);
  align-items: center;
  gap: 1rem;
  padding: 0.9rem;
  border: 2px solid rgba(24, 37, 47, 0.32);
  background: linear-gradient(180deg, rgba(255, 250, 239, 0.9), rgba(231, 209, 171, 0.86)), rgba(255, 255, 255, 0.55);
  box-shadow: 0 10px 24px rgba(44, 24, 14, 0.1);
}

.visit-poster img {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: center 28%;
  border: 2px solid rgba(24, 37, 47, 0.38);
}

.visit-poster-caption {
  display: grid;
  gap: 0.45rem;
}

.visit-poster-caption span {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--lava-deep);
}

.visit-poster-caption strong {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.65rem, 2.5vw, 2.5rem);
  line-height: 0.95;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ink);
}

.visit-line {
  margin: 0 0 1.2rem;
  font-size: 1.08rem;
}

.review-card {
  padding: 1.4rem;
  color: #f6f2e8;
  background:
    radial-gradient(circle at top, rgba(255, 191, 77, 0.24), transparent 30%),
    linear-gradient(180deg, rgba(32, 43, 54, 0.95), rgba(18, 26, 35, 0.97));
}

.review-author {
  margin: 1rem 0 0;
  font-weight: 700;
  color: rgba(246, 242, 232, 0.82);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem 1rem;
  padding: 1rem 1.5rem 1.5rem;
  border-top: 2px solid rgba(24, 37, 47, 0.35);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-footer p {
  margin: 0;
}

.site-credit a {
  color: var(--lava-deep);
  text-decoration: none;
  border-bottom: 2px solid rgba(170, 46, 14, 0.4);
}

@media (max-width: 960px) {
  .site-header,
  .hero,
  .story.section-grid,
  .boards.section-grid,
  .visit-hero,
  .visit-layout,
  .card-grid {
    grid-template-columns: 1fr;
  }

  .story.section-grid {
    grid-template-areas:
      "heading"
      "story"
      "quote";
  }

  .boards.section-grid {
    grid-template-areas:
      "heading"
      "boards"
      "conditions";
  }

  .offerings {
    grid-template-columns: 1fr;
  }

  .offerings > .section-heading {
    position: static;
    margin-bottom: 1.5rem;
  }

  .visit-hero {
    margin-bottom: 1.25rem;
  }

  .visit-poster {
    grid-template-columns: 1fr;
  }

  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-cta {
    width: 100%;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
  }

  .section-heading h2,
  .hero h1 {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 1rem, 100%);
    margin: 0.5rem auto;
  }

  .site-header,
  main,
  .site-footer {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .site-nav {
    gap: 0.8rem;
  }

  .site-nav a {
    font-size: 0.78rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button,
  .header-cta {
    width: 100%;
  }

  .stamp {
    position: static;
    margin-top: 0.75rem;
    display: inline-block;
  }

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