/* ==========================================================================
   Gaźdzówka pod Wesołą Syrenką — main stylesheet
   ========================================================================== */

:root {
  /* Brand from logo: wood, forest green, burgundy, water blue */
  --wood-deep: #2c1810;
  --wood-mid: #5c3a24;
  --wood-warm: #8b5a2b;
  --cream: #f3e6d0;
  --cream-soft: #ebe0cc;
  --green: #1f4a32;
  --green-bright: #2d6b48;
  --burgundy: #8b1e2d;
  --burgundy-deep: #6b1522;
  --water: #3a6b8c;
  --ink: #1a120e;
  --muted: #5a4a3c;
  --line: rgba(44, 24, 16, 0.12);

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Source Sans 3", "Segoe UI", sans-serif;

  --space: clamp(1rem, 2.5vw, 2rem);
  --section: clamp(4.5rem, 10vw, 7.5rem);
  --radius: 2px;
  --max: 1120px;
  --header-h: 4.5rem;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background:
    radial-gradient(ellipse 120% 80% at 10% -10%, rgba(58, 107, 140, 0.08), transparent 50%),
    radial-gradient(ellipse 90% 60% at 100% 20%, rgba(31, 74, 50, 0.07), transparent 45%),
    linear-gradient(180deg, #f7efe3 0%, #efe4d2 40%, #e8dcc8 100%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--burgundy-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
  transition: color 0.2s var(--ease);
}

a:hover {
  color: var(--green);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: var(--wood-deep);
  margin: 0 0 0.6em;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.35rem, 2.5vw, 1.7rem); }

p {
  margin: 0 0 1em;
}

p:last-child {
  margin-bottom: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 1000;
  padding: 0.6rem 1rem;
  background: var(--wood-deep);
  color: var(--cream);
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(100% - 2 * var(--space), var(--max));
  margin-inline: auto;
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(243, 230, 208, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(243, 230, 208, 0.96);
  box-shadow: 0 8px 28px rgba(44, 24, 16, 0.08);
}

.site-header__inner {
  width: min(100% - 2 * var(--space), var(--max));
  margin-inline: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}

.site-brand .custom-logo-link,
.site-brand__logo,
.site-brand .custom-logo {
  width: auto;
  height: 2.75rem;
  object-fit: contain;
  border-radius: 2px;
}

.site-brand__text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.site-brand__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--wood-deep);
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.site-brand__tag {
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 720px) {
  .site-brand__text {
    display: none;
  }
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--wood-deep);
  text-decoration: none;
  position: relative;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 100%;
  height: 2px;
  background: var(--burgundy);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav-menu a:hover::after,
.nav-menu .current-menu-item a::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--wood-deep);
  transition: transform 0.25s var(--ease), opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .primary-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 1.25rem var(--space) 1.5rem;
    background: rgba(243, 230, 208, 0.98);
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.25s;
  }

  .primary-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
  }

  .nav-cta {
    align-self: flex-start;
  }
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s, color 0.25s, border-color 0.25s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--accent {
  background: var(--burgundy);
  color: var(--cream);
  border-color: var(--burgundy-deep);
}

.btn--accent:hover {
  background: var(--burgundy-deep);
  color: #fff;
}

.btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(243, 230, 208, 0.55);
}

.btn--ghost:hover {
  background: rgba(243, 230, 208, 0.12);
  color: #fff;
  border-color: var(--cream);
}

.section--cta .btn--ghost,
.page-hero .btn--ghost {
  color: var(--wood-deep);
  border-color: rgba(44, 24, 16, 0.35);
}

.section--cta .btn--ghost:hover,
.page-hero .btn--ghost:hover {
  background: rgba(44, 24, 16, 0.06);
  color: var(--wood-deep);
}

.btn--sm {
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
}

/* --------------------------------------------------------------------------
   Full-page wooden post (front page) — logo hangs from it in the hero
   -------------------------------------------------------------------------- */

body.is-front {
  --post-x: clamp(0.75rem, 3.5vw, 2.75rem);
  --post-w: clamp(1.65rem, 2.6vw, 2.85rem);
  position: relative;
}

.site-post {
  position: absolute;
  z-index: 60;
  left: var(--post-x);
  top: 0;
  bottom: 0;
  width: var(--post-w);
  border-radius: 3px 4px 2px 3px / 10px;
  background:
    linear-gradient(
      90deg,
      #140c08 0%,
      #3a2214 12%,
      #6b4428 28%,
      #9a6a3c 42%,
      #7a5130 52%,
      #4a2e1a 68%,
      #2a1810 84%,
      #120a06 100%
    );
  box-shadow:
    6px 0 22px rgba(0, 0, 0, 0.28),
    inset -3px 0 6px rgba(0, 0, 0, 0.35),
    inset 2px 0 4px rgba(255, 220, 170, 0.12);
  pointer-events: none;
}

.site-post::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0.45;
  background: repeating-linear-gradient(
    180deg,
    transparent 0 11px,
    rgba(0, 0, 0, 0.08) 11px 12px,
    transparent 12px 23px,
    rgba(255, 210, 150, 0.05) 23px 24px
  );
}

.site-post__shine {
  position: absolute;
  left: 22%;
  top: 0;
  bottom: 0;
  width: 18%;
  background: linear-gradient(
    180deg,
    rgba(255, 230, 190, 0.18),
    rgba(255, 230, 190, 0.05) 40%,
    rgba(255, 230, 190, 0.12)
  );
  border-radius: 2px;
}

.site-post__rings {
  position: absolute;
  left: -18%;
  right: -18%;
  top: calc(var(--header-h) + 18vh);
  height: 10px;
  border-radius: 3px;
  background: linear-gradient(180deg, #2a2a2a, #0d0d0d 45%, #3a3a3a);
  box-shadow:
    0 90vh 0 #161616,
    0 180vh 0 #141414,
    0 270vh 0 #121212,
    0 360vh 0 #101010;
}

body.is-front .site-header__inner,
body.is-front .site-main .container,
body.is-front .site-footer .container {
  padding-left: calc(var(--post-w) + 0.85rem);
}

body.is-front .site-header__inner {
  width: min(100% - 2 * var(--space), calc(var(--max) + var(--post-w)));
}

/* --------------------------------------------------------------------------
   Hero — brand first, hanging sign on full-page wood post
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--cream);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(165deg, rgba(44, 24, 16, 0.55) 0%, rgba(31, 74, 50, 0.45) 42%, rgba(44, 24, 16, 0.72) 100%),
    radial-gradient(ellipse at 70% 40%, rgba(58, 107, 140, 0.35), transparent 55%),
    linear-gradient(180deg, #3d2818 0%, #1f4a32 50%, #2c1810 100%);
  background-size: cover;
}

.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.hero__mist {
  position: absolute;
  inset: auto 0 0;
  height: 40%;
  background: linear-gradient(to top, rgba(44, 24, 16, 0.55), transparent);
  pointer-events: none;
}

.hero__stage {
  position: relative;
  z-index: 3;
  width: min(100% - 2 * var(--space), 920px);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(1rem, 3vw, 2.5rem);
  align-items: center;
  padding: 2rem 0 4rem;
  padding-left: calc(var(--post-w) + 0.5rem);
  margin-left: var(--post-x);
}

.hero__hang {
  position: relative;
  margin-left: calc(var(--post-w) * -0.55);
  animation: hero-sway 5.5s ease-in-out infinite;
  transform-origin: 12% 8%;
}

.hero__sign {
  width: min(100%, 620px);
  margin: 0;
  filter: drop-shadow(10px 22px 28px rgba(0, 0, 0, 0.45));
  animation: hero-rise 1.1s var(--ease) both;
}

.hero__copy {
  text-align: left;
  padding-bottom: 0.5rem;
}

.hero__lead {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.8vw, 1.7rem);
  font-weight: 500;
  font-style: italic;
  color: rgba(243, 230, 208, 0.92);
  max-width: 22ch;
  margin: 0 0 1.75rem;
  animation: hero-rise 1.1s var(--ease) 0.15s both;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.75rem;
  animation: hero-rise 1.1s var(--ease) 0.28s both;
}

.hero__scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 44px;
  border: 1.5px solid rgba(243, 230, 208, 0.45);
  border-radius: 14px;
  display: grid;
  place-items: start center;
  padding-top: 8px;
  text-decoration: none;
  animation: hero-rise 1.1s var(--ease) 0.45s both;
  z-index: 4;
}

.hero__scroll span {
  width: 4px;
  height: 8px;
  border-radius: 2px;
  background: var(--cream);
  animation: scroll-dot 1.6s ease-in-out infinite;
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-sway {
  0%, 100% { transform: rotate(-0.6deg); }
  50% { transform: rotate(0.7deg); }
}

@keyframes scroll-dot {
  0%, 100% { opacity: 0.35; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(10px); }
}

@media (max-width: 860px) {
  .hero__stage {
    grid-template-columns: 1fr;
    width: min(100% - 2 * var(--space), 640px);
    justify-items: start;
  }

  .hero__copy {
    text-align: left;
  }

  .hero__lead {
    max-width: 28ch;
  }

  .hero__hang {
    animation: none;
    margin-left: calc(var(--post-w) * -0.35);
  }
}

@media (max-width: 520px) {
  body.is-front {
    --post-w: 1.25rem;
    --post-x: 0.4rem;
  }

  .hero__stage {
    padding-left: calc(var(--post-w) + 0.35rem);
  }
}

/* --------------------------------------------------------------------------
   Sections
   -------------------------------------------------------------------------- */

.section {
  padding: var(--section) 0;
  position: relative;
}

.section-head {
  max-width: 40rem;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.section-head__lead {
  color: var(--muted);
  font-size: 1.1rem;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--burgundy);
}

.split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.split--reverse {
  grid-template-columns: 0.9fr 1.1fr;
}

.split--reverse .split__text {
  order: 2;
}

@media (max-width: 860px) {
  .split,
  .split--reverse {
    grid-template-columns: 1fr;
  }

  .split--reverse .split__text {
    order: 0;
  }
}

.quote-card {
  margin: 0 0 1.5rem;
  padding: 1.5rem 1.5rem 1.5rem 1.35rem;
  border-left: 3px solid var(--green);
  background: linear-gradient(135deg, rgba(31, 74, 50, 0.08), rgba(139, 30, 45, 0.05));
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--wood-deep);
}

.fact-list,
.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.fact-list li,
.check-list li {
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.fact-list strong {
  color: var(--wood-deep);
}

.check-list li {
  padding-left: 1.5rem;
  position: relative;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.05rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--green-bright);
}

/* Offer */

.section--offer {
  background:
    linear-gradient(180deg, rgba(44, 24, 16, 0.03), transparent 30%),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 47px,
      rgba(44, 24, 16, 0.03) 47px,
      rgba(44, 24, 16, 0.03) 48px
    );
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 900px) {
  .offer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .offer-grid {
    grid-template-columns: 1fr;
  }
}

.offer-item {
  padding: 1.5rem 1.35rem;
  background: rgba(255, 252, 245, 0.55);
  border-top: 2px solid var(--wood-mid);
  transition: transform 0.35s var(--ease), background 0.35s;
}

.offer-item:hover {
  transform: translateY(-4px);
  background: rgba(255, 252, 245, 0.9);
}

.offer-item h3 {
  margin-bottom: 0.5rem;
}

.offer-item p {
  color: var(--muted);
  font-size: 0.98rem;
}

/* Zajazd feature panel */

.feature-panel {
  padding: clamp(2rem, 5vw, 3rem);
  background:
    linear-gradient(145deg, var(--wood-deep), var(--green) 70%, var(--water));
  color: var(--cream);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}

.feature-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(243, 230, 208, 0.15), transparent 45%);
  pointer-events: none;
}

.feature-panel__label {
  position: relative;
  z-index: 1;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 0.5rem;
}

.feature-panel__stat {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 4.5rem);
  font-weight: 700;
  line-height: 1;
  margin: 0 0 0.75rem;
}

.feature-panel__desc {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 28ch;
  opacity: 0.9;
}

/* Chef */

.chef-banner {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) 1.3fr;
  gap: clamp(1.5rem, 4vw, 2.75rem);
  align-items: stretch;
  padding: 0;
  background: var(--wood-deep);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.chef-banner::before {
  content: "";
  position: absolute;
  right: -10%;
  top: -40%;
  width: 50%;
  height: 180%;
  background: radial-gradient(circle, rgba(139, 30, 45, 0.45), transparent 65%);
  pointer-events: none;
}

.chef-banner__photo {
  margin: 0;
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, #f5f5f5 0%, #e8e8e8 100%);
  min-height: 320px;
}

.chef-banner__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.chef-banner__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  padding: clamp(1.75rem, 4vw, 2.75rem) clamp(1.5rem, 4vw, 2.5rem) clamp(1.75rem, 4vw, 2.75rem) 0;
}

.chef-banner .eyebrow {
  color: #e8a0a8;
}

.chef-banner h2 {
  color: var(--cream);
  margin-bottom: 0.35em;
}

.chef-banner__role {
  margin: 0 0 0.85em;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(243, 230, 208, 0.7);
}

.chef-banner p {
  color: rgba(243, 230, 208, 0.88);
  max-width: 42ch;
}

.chef-banner__medals {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.chef-banner__medals li {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(243, 230, 208, 0.2);
  font-family: var(--font-display);
  font-size: 1.05rem;
}

@media (max-width: 760px) {
  .chef-banner {
    grid-template-columns: 1fr;
  }

  .chef-banner__photo {
    min-height: 360px;
    max-height: 420px;
  }

  .chef-banner__body {
    padding: 0 1.5rem 1.75rem;
  }
}

/* Events */

.events-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 760px) {
  .events-row {
    grid-template-columns: 1fr;
  }
}

.event-tile {
  padding: 1.75rem 1.5rem;
  border-bottom: 2px solid var(--burgundy);
  background: transparent;
}

.event-tile p {
  color: var(--muted);
}

/* CTA */

.cta-band {
  text-align: center;
  padding: clamp(2.5rem, 6vw, 4rem) 1.5rem;
  background:
    linear-gradient(180deg, rgba(31, 74, 50, 0.1), rgba(139, 30, 45, 0.08)),
    rgba(255, 252, 245, 0.5);
  border: 1px solid var(--line);
}

.cta-band h2 {
  margin-bottom: 0.5rem;
}

.cta-band > p {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.cta-band .hero__actions {
  animation: none;
}

/* --------------------------------------------------------------------------
   Page / blog
   -------------------------------------------------------------------------- */

.page-hero {
  padding: clamp(3rem, 8vw, 5rem) 0 2rem;
  background:
    linear-gradient(180deg, rgba(44, 24, 16, 0.06), transparent);
  text-align: center;
}

.content-wrap {
  padding-bottom: var(--section);
}

.prose {
  max-width: 42rem;
  margin-inline: auto;
}

.prose h2,
.prose h3 {
  margin-top: 1.75em;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.post-card {
  background: rgba(255, 252, 245, 0.65);
  border-top: 2px solid var(--wood-mid);
  overflow: hidden;
}

.post-card__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.post-card__body {
  padding: 1.25rem;
}

.post-card time {
  font-size: 0.8rem;
  color: var(--muted);
}

.post-card h2 {
  font-size: 1.4rem;
  margin: 0.35rem 0 0.5rem;
}

.post-card h2 a {
  text-decoration: none;
  color: var(--wood-deep);
}

.post-featured {
  margin: 0 0 2rem;
}

.post-featured img {
  width: 100%;
  border-radius: 2px;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer {
  position: relative;
  background: var(--wood-deep);
  color: rgba(243, 230, 208, 0.85);
  padding-top: clamp(3rem, 7vw, 5rem);
  overflow: hidden;
}

.site-footer__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(31, 74, 50, 0.45), transparent 50%),
    radial-gradient(ellipse at 90% 30%, rgba(139, 30, 45, 0.25), transparent 45%);
  pointer-events: none;
}

.site-footer__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}

@media (max-width: 800px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
  }
}

.site-footer__logo {
  width: 180px;
  margin-bottom: 1rem;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.35));
}

.site-footer__motto {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  max-width: 28ch;
}

.site-footer__title {
  color: var(--cream);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.site-footer a {
  color: var(--cream);
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
  text-decoration: underline;
}

.site-footer__hours,
.site-footer__note {
  font-size: 0.92rem;
  opacity: 0.85;
}

.footer-menu {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.site-footer__bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(243, 230, 208, 0.12);
  padding: 1.25rem 0;
  font-size: 0.85rem;
  opacity: 0.75;
}

/* --------------------------------------------------------------------------
   Reveal animations
   -------------------------------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay {
  transition-delay: 0.12s;
}

.offer-item.reveal {
  transition-delay: calc(var(--i, 0) * 0.06s);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero__sign,
  .hero__lead,
  .hero__actions,
  .hero__scroll,
  .hero__hang,
  .reveal {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .hero__scroll span {
    animation: none;
  }
}
