/* ============================================================
   SECTIONS — custom mountain-life metaphors
   Talking Mountain · Trail Map · Guestbook · Weather Window ·
   Noticeboard Footer · Offers Branch refinement
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400;500;600&family=Special+Elite&display=swap');

:root {
  --hand: "Caveat", "Bradley Hand", cursive;
  --typewriter: "Special Elite", "Courier New", monospace;
  --ink-pencil: #4A5760;
  --ink-pen: #1F2A2E;
  --ink-blue: #2C4A6E;
  --paper: #F4EFE3;
  --paper-shadow: #C9BFAA;
}

/* ============================================================
   1. TALKING MOUNTAIN  —  animation, not text on the ridge
   ============================================================ */
.talking-mountain {
  position: relative;
  padding: clamp(80px, 10vw, 140px) 0 clamp(80px, 10vw, 120px);
  background: linear-gradient(180deg, #DCE5EC 0%, #E8EDF1 45%, var(--glacier) 100%);
  overflow: hidden;
  text-align: center;
}
.talking-mountain__sky {
  position: absolute; inset: 0;
  background:
    radial-gradient(70% 50% at 50% 25%, rgba(255,255,255,.55), transparent 70%),
    radial-gradient(40% 30% at 80% 60%, rgba(232,184,99,.06), transparent 70%);
  pointer-events: none;
}

.tm-preamble {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(22px, 2.4vw, 32px);
  color: var(--slate, #4A5760);
  margin: 0 auto 24px;
  letter-spacing: 0.01em;
  max-width: 600px;
}
.tm-preamble::before, .tm-preamble::after {
  content: ""; display: inline-block;
  width: 32px; height: 1px;
  background: rgba(74,87,96,.4);
  vertical-align: middle;
  margin: 0 14px 6px;
}

.tm-stage {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  aspect-ratio: 16/8;
}
.tm-stage svg {
  width: 100%; height: 100%;
  display: block;
  overflow: visible;
}

/* ridges */
.tm-ridge-back  { fill: rgba(127,168,201,.20); stroke: none; }
.tm-ridge-mid   { fill: rgba(74,87,96,.32); stroke: none; }
.tm-ridge-front {
  fill: rgba(31,42,46,.94);
  stroke: rgba(31,42,46,1);
  stroke-width: 1;
}
.tm-snowcap {
  fill: rgba(251,247,239,.92);
  filter: drop-shadow(0 -2px 6px rgba(255,255,255,.6));
}

/* the breathing — silhouette gently swells */
.tm-breathing {
  transform-origin: 50% 100%;
  animation: tmBreathe 12s ease-in-out infinite;
}
@keyframes tmBreathe {
  0%, 100% { transform: scaleY(1); }
  50%      { transform: scaleY(1.012); }
}

/* drifting mist */
.tm-mist {
  fill: rgba(255,255,255,.45);
  animation: tmDrift 28s linear infinite;
}
.tm-mist.b2 { animation-duration: 40s; animation-delay: -10s; opacity: .35; }
.tm-mist.b3 { animation-duration: 22s; animation-delay: -6s;  opacity: .28; }
@keyframes tmDrift {
  from { transform: translateX(-200px); }
  to   { transform: translateX(1600px); }
}

/* cabin lights — they wake one by one */
.tm-cabin-light {
  fill: var(--candle);
  filter: drop-shadow(0 0 6px rgba(232,184,99,.8))
          drop-shadow(0 0 12px rgba(232,184,99,.4));
  opacity: 0;
  animation: tmCabinWake 12s ease-in-out infinite;
}
.tm-cabin-light.l1 { animation-delay: 0s; }
.tm-cabin-light.l2 { animation-delay: 1.2s; }
.tm-cabin-light.l3 { animation-delay: 2.4s; }
.tm-cabin-light.l4 { animation-delay: 3.6s; }
.tm-cabin-light.l5 { animation-delay: 4.8s; }
@keyframes tmCabinWake {
  0%       { opacity: 0; }
  10%      { opacity: 1; }
  60%      { opacity: 1; }
  80%      { opacity: 0.4; }
  100%     { opacity: 0; }
}

/* embers — three glowing dots travel along the ridgeline, then drift up */
.tm-ember {
  offset-path: path("M 40 460 L 140 380 L 220 420 L 320 280 L 420 360 L 520 220 L 640 320 L 760 180 L 880 280 L 980 220 L 1100 340 L 1220 240 L 1320 360 L 1380 320");
  offset-rotate: 0deg;
  fill: var(--candle);
  filter: drop-shadow(0 0 8px rgba(232,184,99,.9))
          drop-shadow(0 0 16px rgba(232,184,99,.5));
  animation: tmEmber 18s ease-in-out infinite;
  opacity: 0;
}
.tm-ember.e1 { animation-delay: 0s; }
.tm-ember.e2 { animation-delay: 5s; }
.tm-ember.e3 { animation-delay: 10s; }
@keyframes tmEmber {
  0%   { offset-distance: 0%;   opacity: 0; }
  8%   { opacity: 1; }
  78%  { offset-distance: 100%; opacity: 1; }
  92%  { opacity: 0; }
  100% { offset-distance: 100%; opacity: 0; }
}
/* fallback if offset-path unsupported — keep them faintly visible */
@supports not (offset-path: path("M0 0 L 1 1")) {
  .tm-ember { opacity: 0.6; animation: none; }
}

/* falling snow inside the stage */
.tm-snow circle {
  fill: rgba(255,255,255,.9);
  animation: tmSnowFall 14s linear infinite;
}
.tm-snow .s2 { animation-duration: 18s; animation-delay: -3s; }
.tm-snow .s3 { animation-duration: 22s; animation-delay: -7s; }
.tm-snow .s4 { animation-duration: 16s; animation-delay: -1s; }
.tm-snow .s5 { animation-duration: 20s; animation-delay: -11s; }
.tm-snow .s6 { animation-duration: 24s; animation-delay: -5s; }
@keyframes tmSnowFall {
  from { transform: translateY(-40px); opacity: 0; }
  10%  { opacity: 0.8; }
  90%  { opacity: 0.6; }
  to   { transform: translateY(580px); opacity: 0; }
}

/* the three lines that fade in below */
.tm-promises {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 4vw, 60px);
  flex-wrap: wrap;
  margin: 48px auto 0;
  max-width: 1120px;
  padding: 0 24px;
}
.tm-promise {
  flex: 1 1 240px;
  max-width: 320px;
  position: relative;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 1.4s ease, transform 1.4s ease;
}
.talking-mountain.in .tm-promise { opacity: 1; transform: translateY(0); }
.talking-mountain.in .tm-promise.p2 { transition-delay: 1.2s; }
.talking-mountain.in .tm-promise.p3 { transition-delay: 2.4s; }

.tm-promise .echo {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(20px, 1.9vw, 26px);
  line-height: 1.3;
  color: var(--pine);
  margin: 0 0 8px;
  text-wrap: balance;
}
.tm-promise .echo em {
  font-style: italic;
  color: var(--cedar);
}
.tm-promise .reply {
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--slate, #4A5760);
  text-transform: uppercase;
  font-weight: 500;
}
.tm-promise::before {
  content: "";
  position: absolute;
  top: -16px; left: 50%;
  transform: translateX(-50%);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--candle);
  box-shadow: 0 0 8px rgba(232,184,99,.7);
  opacity: 0;
  transition: opacity 1s ease;
}
.talking-mountain.in .tm-promise::before { opacity: 1; }
.talking-mountain.in .tm-promise.p2::before { transition-delay: 1.4s; }
.talking-mountain.in .tm-promise.p3::before { transition-delay: 2.6s; }

.tm-signature {
  margin: 56px auto 16px;
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: 18px;
  color: var(--slate, #4A5760);
}
.tm-signature .pen {
  font-family: var(--hand);
  font-size: 28px;
  color: var(--cedar);
  font-style: normal;
  margin-left: 6px;
  vertical-align: -2px;
}
.tm-cta {
  text-align: center;
  margin-top: 12px;
}
@media (max-width: 700px) {
  .tm-stage { aspect-ratio: 4/3; }
  .tm-preamble::before, .tm-preamble::after { width: 16px; margin: 0 8px 4px; }
}

/* ============================================================
   2. TRAIL MAP
   ============================================================ */
.trail-map {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--glacier);
  position: relative;
}
.trail-map__paper {
  background: var(--paper);
  border-radius: 6px;
  padding: 60px 40px 80px;
  box-shadow:
    var(--shadow-altitude),
    inset 0 0 80px rgba(201, 191, 170, .35);
  position: relative;
  overflow: hidden;
}
.trail-map__paper::before {
  /* paper grain */
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(92,58,33,.05) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(92,58,33,.04) 0%, transparent 40%);
  pointer-events: none;
}
.trail-map__head {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 32px; gap: 32px; flex-wrap: wrap;
  position: relative;
}
.trail-map__head h2 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1;
  margin: 0;
  color: var(--cedar-deep);
}
.trail-map__head h2 em { font-style: italic; color: var(--hearth); }
.trail-map__head .legend {
  font-family: var(--typewriter);
  font-size: 11px;
  color: var(--cedar);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.trail-svg-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/7;
}
.trail-svg-wrap svg { width: 100%; height: 100%; display: block; overflow: visible; }
.contour { fill: none; stroke: rgba(92,58,33,.18); stroke-width: 1; }
.contour-strong { stroke: rgba(92,58,33,.35); }
.trail-path {
  fill: none;
  stroke: var(--cedar);
  stroke-width: 1.5;
  stroke-dasharray: 6 5;
  stroke-linecap: round;
}
.waypoint {
  cursor: pointer;
  transition: transform 220ms ease;
  transform-origin: center;
  transform-box: fill-box;
}
.waypoint:hover { transform: scale(1.12); }
.waypoint circle.dot { fill: var(--hearth); stroke: var(--paper); stroke-width: 3; }
.waypoint circle.pulse {
  fill: none; stroke: var(--hearth); stroke-width: 1.2;
  opacity: 0;
}
.waypoint:hover circle.pulse { animation: waypointPulse 1.2s ease infinite; }
@keyframes waypointPulse {
  0% { r: 8; opacity: .9; }
  100% { r: 28; opacity: 0; }
}
.waypoint text.wp-label {
  font-family: var(--display);
  font-style: italic;
  font-size: 18px;
  fill: var(--cedar-deep);
  font-weight: 400;
}
.waypoint text.wp-hint {
  font-family: var(--hand);
  font-size: 16px;
  fill: var(--ink-pencil);
}
.map-anno {
  font-family: var(--hand);
  font-size: 18px;
  fill: rgba(74,87,96,.65);
}
.compass-rose { fill: none; stroke: var(--cedar); stroke-width: 1; }
.compass-rose text {
  font-family: var(--typewriter);
  font-size: 11px;
  fill: var(--cedar);
}
.trail-map__detail {
  margin-top: 32px;
  min-height: 60px;
  font-family: var(--display);
  font-style: italic;
  font-size: 20px;
  color: var(--cedar-deep);
  text-align: center;
  transition: opacity 300ms;
}

/* ============================================================
   3. GUESTBOOK
   ============================================================ */
.guestbook {
  padding: clamp(100px, 12vw, 160px) 0;
  background: linear-gradient(180deg, #1B120B 0%, #2A1B0E 100%);
  position: relative;
  overflow: hidden;
}
.guestbook__head {
  text-align: center;
  margin-bottom: 60px;
  color: #F5E6D0;
}
.guestbook__head .eyebrow { color: var(--candle); }
.guestbook__head h2 {
  font-family: var(--display); font-weight: 300;
  font-size: clamp(32px, 4vw, 56px);
  margin: 18px 0 0;
}
.guestbook__head h2 em { font-style: italic; color: var(--candle); }

.guestbook__spread {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1080px;
  margin: 0 auto;
  background: var(--paper);
  border-radius: 4px;
  box-shadow:
    0 50px 100px -30px rgba(0,0,0,.6),
    0 20px 40px -20px rgba(0,0,0,.4),
    inset 0 0 120px rgba(201,191,170,.4);
  position: relative;
  min-height: 500px;
  background-image:
    repeating-linear-gradient(0deg,
      transparent 0, transparent 39px,
      rgba(74,87,96,.08) 39px, rgba(74,87,96,.08) 40px);
}
.guestbook__spread::before {
  /* center crease */
  content: ""; position: absolute;
  left: 50%; top: 8%; bottom: 8%;
  width: 1px;
  background: linear-gradient(180deg,
    transparent 0%, rgba(92,58,33,.18) 20%, rgba(92,58,33,.32) 50%,
    rgba(92,58,33,.18) 80%, transparent 100%);
  box-shadow: -1px 0 8px rgba(92,58,33,.18);
}
.guestbook__page {
  padding: 48px 56px;
  position: relative;
}
.guestbook__entry {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  color: var(--ink-pen);
  margin-bottom: 36px;
}
.guestbook__entry p {
  font-size: 22px;
  line-height: 1.5;
  margin: 0 0 12px;
  text-wrap: balance;
}
.guestbook__entry .sig {
  display: block;
  font-family: var(--hand);
  font-style: normal;
  font-size: 22px;
  color: var(--ink-blue);
  margin-top: 8px;
  letter-spacing: 0.01em;
}
.guestbook__entry .meta {
  display: inline-block;
  font-family: var(--typewriter);
  font-style: normal;
  font-size: 11px;
  color: var(--cedar);
  letter-spacing: 0.1em;
  margin-left: 12px;
  opacity: 0.7;
}
.guestbook__entry.tilt-1 { transform: rotate(-0.4deg); }
.guestbook__entry.tilt-2 { transform: rotate(0.6deg); }
.guestbook__entry.tilt-3 { transform: rotate(-0.2deg); }
.guestbook__doodle {
  display: inline-block;
  width: 28px; height: 28px;
  vertical-align: middle;
  margin-left: 8px;
}
.guestbook__doodle path { fill: none; stroke: var(--ink-pen); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.guestbook__doodle.blue path { stroke: var(--ink-blue); }
.guestbook__doodle.red path { stroke: #A03A2A; }

.coffee-ring {
  position: absolute;
  width: 90px; height: 90px;
  border-radius: 50%;
  border: 2px solid rgba(92,58,33,.25);
  box-shadow: inset 0 0 16px rgba(92,58,33,.15);
  pointer-events: none;
}
.pen-rest {
  position: absolute;
  bottom: 30px;
  right: 16%;
  width: 240px;
  height: 8px;
  pointer-events: none;
}
.pen-rest svg { width: 100%; height: 100%; overflow: visible; }

.guestbook__cta {
  text-align: center;
  margin-top: 48px;
  color: rgba(245,230,208,.8);
}
.guestbook__cta .tlink { color: var(--candle); }
.guestbook__cta .tlink:hover { color: #FBEFD8; }

@media (max-width: 800px) {
  .guestbook__spread { grid-template-columns: 1fr; min-height: 0; }
  .guestbook__spread::before { display: none; }
  .guestbook__page { padding: 32px 28px; }
}

/* ============================================================
   4. WEATHER WINDOW (newsletter)
   ============================================================ */
.weather-window {
  padding: clamp(100px, 12vw, 160px) 0;
  background: #0E1518;
  position: relative;
  overflow: hidden;
}
.weather-window::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 50% 30%, rgba(127,168,201,.08), transparent 70%);
}
.window-frame {
  max-width: 720px; margin: 0 auto;
  position: relative;
  background:
    linear-gradient(180deg, #5C3A21 0%, #3A2414 50%, #5C3A21 100%);
  padding: 28px;
  border-radius: 6px;
  box-shadow:
    0 60px 120px -40px rgba(0,0,0,.7),
    0 24px 48px -20px rgba(0,0,0,.5);
}
.window-grid {
  width: 100%;
  aspect-ratio: 4/3;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.window-grid .pane {
  background: var(--img) center/cover no-repeat;
  /* desaturate + dim so images whisper, never shout */
  filter: blur(3px) saturate(0.55) brightness(0.78);
  position: relative;
}
.window-grid .pane::after {
  /* per-pane frost veil so individual images don't dominate */
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 35%, rgba(255,255,255,.0) 8%, rgba(255,255,255,.55) 60%),
    linear-gradient(180deg, rgba(244,247,250,.4) 0%, rgba(232,239,243,.55) 100%);
  mix-blend-mode: screen;
  pointer-events: none;
}
/* Each pane gets a slightly different frost so it feels organic */
.window-grid .pane:nth-child(1)::after { background-position: 20% 30%, 0 0; opacity: 0.95; }
.window-grid .pane:nth-child(2)::after { background-position: 60% 50%, 0 0; opacity: 0.85; }
.window-grid .pane:nth-child(3)::after { background-position: 80% 25%, 0 0; opacity: 0.95; }
.window-grid .pane:nth-child(4)::after { background-position: 25% 70%, 0 0; opacity: 0.92; }
.window-grid .pane:nth-child(5)::after { background-position: 55% 40%, 0 0; opacity: 0.88; }
.window-grid .pane:nth-child(6)::after { background-position: 75% 60%, 0 0; opacity: 0.95; }
.window-pane-wrap {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  box-shadow:
    inset 0 0 60px rgba(255,255,255,.18),
    inset 0 0 0 1px rgba(255,255,255,.12);
}
.window-frost-overlay {
  position: absolute; inset: 0;
  /* unified soft frost on top of the 6 panes — lighter than before so images whisper through */
  background:
    radial-gradient(ellipse 60% 45% at 50% 30%, rgba(255,255,255,.0) 0%, rgba(255,255,255,.30) 80%),
    linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,.32));
  pointer-events: none;
}
.window-mullion-h, .window-mullion-v {
  position: absolute; background: #3A2414; pointer-events: none;
  box-shadow: 0 0 8px rgba(0,0,0,.4);
}
.window-mullion-h { left: 0; right: 0; height: 8px; top: calc(50% - 4px); }
.window-mullion-v { top: 0; bottom: 0; width: 8px; left: calc(33.33% - 4px); }
.window-mullion-v.right { left: auto; right: calc(33.33% - 4px); }

.frost-headline {
  position: absolute;
  top: 14%; left: 8%; right: 8%;
  font-family: var(--hand);
  font-weight: 600;
  font-size: clamp(30px, 3.6vw, 48px);
  /* darker pencil-on-frost reads on the white overlay */
  color: #2A3A48;
  text-shadow:
    0 1px 0 rgba(255,255,255,.6),
    0 2px 8px rgba(127,168,201,.35);
  line-height: 1.15;
  z-index: 3;
  pointer-events: none;
  text-align: center;
  letter-spacing: 0.01em;
}

.frost-form {
  position: absolute;
  top: 60%; left: 10%; right: 10%;
  z-index: 4;
  display: flex; align-items: center; gap: 12px;
  /* the wiped-clean strip — clearer to read through */
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(2px);
  padding: 12px 16px;
  border-radius: 3px;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.7),
    inset 0 -1px 0 rgba(127,168,201,.25),
    0 6px 20px rgba(0,0,0,.18);
}
.frost-form input {
  flex: 1; background: transparent; border: none; outline: none;
  font-family: var(--hand);
  font-weight: 500;
  font-size: 24px;
  color: #1F2A2E;
  padding: 4px 6px;
}
.frost-form input::placeholder { color: rgba(74,87,96,.7); font-weight: 400; }

.brass-key {
  width: 44px; height: 44px;
  background: transparent; border: none; cursor: pointer;
  padding: 0;
  transition: transform 220ms;
  transform-origin: top center;
}
.brass-key:hover { transform: rotate(-8deg); }
.brass-key.swing { animation: keySwing 800ms ease; }
@keyframes keySwing {
  0%, 100% { transform: rotate(0); }
  25% { transform: rotate(-25deg); }
  60% { transform: rotate(15deg); }
  85% { transform: rotate(-8deg); }
}
.brass-key svg { width: 100%; height: 100%; display: block; }

.window-corner-note {
  position: absolute;
  bottom: -44px; right: 4%;
  font-family: var(--hand);
  font-weight: 500;
  font-size: 20px;
  color: rgba(232,184,99,.95);
  transform: rotate(-3deg);
  text-shadow: 0 1px 2px rgba(0,0,0,.4);
}
.window-corner-note::before {
  content: "↗ "; opacity: .8;
}

/* On submit, briefly clear the frost */
.weather-window.cleared .window-frost-overlay {
  opacity: 0.4;
  transition: opacity 1.2s ease;
}
.weather-window.cleared .window-grid .pane {
  filter: blur(1.5px) saturate(0.85) brightness(0.95);
  transition: filter 1.4s ease;
}
.weather-window.cleared .window-grid .pane::after {
  opacity: 0.55;
  transition: opacity 1.4s ease;
}

/* ============================================================
   5. NOTICEBOARD FOOTER
   ============================================================ */
.notice-footer {
  position: relative;
  background:
    repeating-linear-gradient(0deg,
      #3A2414 0px, #3A2414 60px, #2D1E12 60px, #2D1E12 62px,
      #3A2414 62px, #3A2414 122px, #2A1B0E 122px, #2A1B0E 124px),
    #2A1B0E;
  color: #F5E6D0;
  padding: 100px 0 32px;
  overflow: hidden;
}
.notice-footer::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 80% at 80% 0%, rgba(200,116,26,.10), transparent 60%),
    radial-gradient(50% 70% at 20% 100%, rgba(127,168,201,.08), transparent 60%);
  pointer-events: none;
}
.notice-footer .container { position: relative; }

.notice-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr 0.6fr;
  gap: 32px;
  align-items: start;
  margin-bottom: 80px;
}
@media (max-width: 1000px) { .notice-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .notice-grid { grid-template-columns: 1fr; } }

.note {
  position: relative;
  padding: 24px 22px 22px;
  border-radius: 2px;
  box-shadow:
    0 18px 32px -16px rgba(0,0,0,.6),
    0 4px 12px -6px rgba(0,0,0,.4);
}
.note::after {
  /* thumbtack */
  content: ""; position: absolute;
  top: -7px; left: 50%; transform: translateX(-50%);
  width: 14px; height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #FF6E5C, #A03A2A 70%);
  box-shadow: 0 2px 4px rgba(0,0,0,.5),
              inset 0 1px 1px rgba(255,255,255,.5);
}
.note--paper {
  background: var(--paper);
  color: var(--ink-pen);
  transform: rotate(-1.4deg);
}
.note--paper.tilt-2 { transform: rotate(1deg); }
.note--paper.tilt-3 { transform: rotate(-0.6deg); }
.note--telegram {
  background: #F5EBD8;
  color: var(--ink-pen);
  transform: rotate(0.8deg);
}
.note--torn {
  background: var(--paper);
  color: var(--ink-pen);
  transform: rotate(-0.8deg);
  /* torn bottom edge */
  -webkit-mask-image:
    linear-gradient(180deg, #000 0%, #000 92%, transparent 100%),
    linear-gradient(180deg, #000 0%, #000 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 92%, transparent 100%);
}

.note h5 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 16px;
  color: var(--cedar);
}
.note--telegram h5 {
  font-family: var(--typewriter);
  font-size: 14px;
  letter-spacing: 0.18em;
  color: var(--cedar-deep);
  border-bottom: 1px dashed rgba(92,58,33,.4);
  padding-bottom: 8px;
}
.note ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.note ul li { font-family: var(--display); font-style: italic; font-size: 17px; line-height: 1.4; }
.note ul li::before {
  content: counter(noteitem) ". ";
  font-family: var(--typewriter);
  font-style: normal;
  font-size: 12px;
  color: var(--hearth);
  margin-right: 6px;
  counter-increment: noteitem;
}
.note ul { counter-reset: noteitem; }
.note ul a { color: inherit; text-decoration: none; transition: color 220ms; }
.note ul a:hover { color: var(--hearth); }

.note--paper p {
  font-family: var(--hand);
  font-size: 22px;
  margin: 0 0 8px;
  line-height: 1.3;
  color: var(--ink-pen);
}
.note--paper .small {
  font-family: var(--typewriter);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--cedar);
}

.note--telegram .row {
  display: flex; gap: 8px; align-items: baseline; margin-bottom: 8px;
  font-family: var(--typewriter); font-size: 13px;
}
.note--telegram .row .lbl {
  color: var(--cedar);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 10px;
}
.note--telegram a { color: var(--ink-pen); text-decoration: none; border-bottom: 1px dotted var(--cedar); }
.note--telegram a:hover { color: var(--hearth); border-bottom-color: var(--hearth); }

.note--torn .schedule {
  font-family: var(--display);
  font-style: italic;
  font-size: 18px;
  line-height: 1.4;
  color: var(--ink-pen);
}
.note--torn .schedule strong {
  display: block;
  font-style: normal;
  font-family: var(--typewriter);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hearth);
  margin-top: 12px;
}

/* The bell column */
.bell-col {
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  padding-top: 8px;
}
.bell-hook {
  width: 1px; height: 28px;
  background: linear-gradient(180deg, transparent, rgba(232,184,99,.5));
}
.brass-bell {
  width: 64px; height: 80px;
  background: transparent; border: none; cursor: pointer; padding: 0;
  transform-origin: top center;
  transition: transform 220ms;
}
.brass-bell:hover { transform: rotate(-6deg); }
.brass-bell.ring { animation: bellRing 1s ease; }
@keyframes bellRing {
  0%,100% { transform: rotate(0); }
  20% { transform: rotate(-20deg); }
  40% { transform: rotate(15deg); }
  60% { transform: rotate(-10deg); }
  80% { transform: rotate(6deg); }
}
.bell-col .label {
  font-family: var(--hand);
  font-size: 18px;
  color: rgba(232,184,99,.7);
}

/* Chalk note tucked at corner */
.chalk-note {
  position: absolute;
  top: 32px; right: 32px;
  transform: rotate(2deg);
  font-family: var(--hand);
  font-size: 22px;
  color: rgba(245,230,208,.55);
  max-width: 240px;
  text-align: right;
  border-left: 2px solid rgba(232,184,99,.3);
  padding-left: 14px;
  pointer-events: none;
}
.chalk-note::before {
  content: "today's note —";
  display: block;
  font-family: var(--typewriter);
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(232,184,99,.5);
  margin-bottom: 6px;
}
@media (max-width: 800px) { .chalk-note { display: none; } }

/* Bottom plank — branded */
.notice-bottom {
  position: relative;
  border-top: 1px solid rgba(232,184,99,.15);
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--typewriter);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,230,208,.5);
}
.notice-bottom .branded {
  color: rgba(232,184,99,.55);
  /* 'burnt into wood' look */
  text-shadow:
    0 1px 0 rgba(0,0,0,.5),
    0 0 4px rgba(232,184,99,.2);
}

/* ============================================================
   6. OFFERS BRANCH refinement (layered on top of existing .offers)
   ============================================================ */
.tag__card { transition: transform 600ms cubic-bezier(.2,.6,.2,1) !important; }
.offers .branch {
  height: auto;
  background: none;
  position: relative;
}
.offers .branch svg {
  position: absolute;
  top: -20px; left: -2%;
  width: 104%;
  height: 80px;
  overflow: visible;
}
.branch-line { fill: none; stroke: rgba(232,184,99,.55); stroke-width: 2; stroke-linecap: round; }
.branch-needle { fill: none; stroke: rgba(232,184,99,.4); stroke-width: 1; }
