:root {
  --bg: #f8f3ec;
  --bg-soft: #fdfaf6;
  --surface: rgba(255, 250, 245, 0.84);
  --surface-strong: #fffaf4;
  --surface-dark: #201816;
  --ink: #281d1a;
  --muted: #6d5a53;
  --line: rgba(79, 52, 40, 0.14);
  --primary: #8b5637;
  --primary-dark: #6e3f24;
  --secondary: #d6b79e;
  --accent: #f3dfcf;
  --shadow-lg: 0 24px 70px rgba(38, 24, 18, 0.14);
  --shadow-md: 0 18px 40px rgba(38, 24, 18, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 232, 216, 0.85), transparent 34%),
    linear-gradient(180deg, #f8f3ec 0%, #fbf7f1 42%, #f5eee6 100%);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 300;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: var(--surface-dark);
  color: #fff;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(var(--container), calc(100% - 2.5rem));
  margin: 0 auto;
}

.site-shell {
  overflow-x: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 0.62rem 0;
  background: rgba(248, 243, 236, 0.72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(252, 247, 241, 0.9);
  border-color: var(--line);
  box-shadow: 0 10px 30px rgba(34, 24, 20, 0.08);
}

.header-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand-mark {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  overflow: hidden;
  flex: 0 0 auto;
  border: 4px solid rgba(255, 255, 255, 0.98);
  box-shadow:
    0 0 0 8px rgba(255, 248, 240, 0.45),
    0 22px 38px rgba(38, 24, 18, 0.2);
  background: #fffdf9;
  display: grid;
  place-items: center;
}

.brand-mark img {
  width: 86%;
  height: 86%;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 0.1rem;
}

.brand-copy strong {
  font-size: 1.2rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 1.15rem;
  padding-right: 0.35rem;
}

.site-nav a {
  position: relative;
  font-size: 1rem;
  font-weight: 700;
  color: var(--muted);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.btn,
.text-link {
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  padding: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 24px rgba(38, 24, 18, 0.12);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle span + span {
  margin-top: 4px;
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero-section {
  position: relative;
  padding: 4rem 0 6rem;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #140d0a;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background:
    linear-gradient(180deg, rgba(22, 13, 9, 0.24) 0%, rgba(22, 13, 9, 0.66) 100%),
    url("images/WszyscyPracownicy.jpg") center 86% / cover no-repeat;
  transform: scale(1.08);
  filter: blur(1.35px);
}

.hero-overlay {
  background:
    radial-gradient(circle at top right, rgba(244, 190, 153, 0.15), transparent 28%),
    linear-gradient(90deg, rgba(10, 6, 4, 0.92) 0%, rgba(10, 6, 4, 0.66) 36%, rgba(10, 6, 4, 0.34) 62%, rgba(10, 6, 4, 0.6) 100%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: block;
}

.hero-copy {
  position: relative;
  max-width: 720px;
  color: #fff8f3;
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: -1.8rem -1.5rem -1.8rem -1.2rem;
  z-index: -1;
  border-radius: 999px;
  background: radial-gradient(circle at left center, rgba(10, 6, 4, 0.64), rgba(10, 6, 4, 0.24) 54%, transparent 78%);
  filter: blur(26px);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.74rem;
  font-weight: 800;
  color: var(--primary);
}

.eyebrow-light {
  color: rgba(255, 242, 234, 0.82);
}

.hero-copy h1,
.section-copy h2,
.section-heading h2,
.contact-copy h2,
.transfer-panel h3,
.hero-card h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.02em;
}

.hero-copy h1 {
  font-size: clamp(3.5rem, 8vw, 6.4rem);
  text-shadow: 0 10px 28px rgba(7, 4, 3, 0.42);
}

.hero-copy h1 span {
  display: inline-block;
  font-style: italic;
  color: #ffd9bf;
}

.hero-lead,
.section-lead,
.section-heading p,
.hero-card,
.menu-card-body p,
.value-card p,
.support-card p,
.contact-card p,
.map-copy p {
  font-size: 1.02rem;
}

.hero-lead {
  max-width: 44rem;
  margin: 1.4rem 0 0;
  color: rgba(255, 247, 241, 0.9);
  text-shadow: 0 5px 18px rgba(7, 4, 3, 0.46);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.35rem;
  padding: 0.9rem 1.45rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
}

.btn:hover,
.btn:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 16px 30px rgba(17, 10, 6, 0.24);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #fff6f0;
}

.btn-secondary {
  border-color: rgba(255, 242, 234, 0.5);
  color: #fff8f3;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.16);
}

.btn-light {
  width: 100%;
  background: #fff;
  color: var(--primary-dark);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
}

.btn-light:hover,
.btn-light:focus-visible {
  background: #fff8f3;
}

.hero-tagline {
  max-width: 38rem;
  margin: 1.35rem 0 0;
  color: rgba(255, 247, 241, 0.88);
  font-size: 0.98rem;
  text-shadow: 0 4px 16px rgba(7, 4, 3, 0.42);
}

.hero-card {
  padding: 1.6rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 248, 241, 0.14);
  color: #fff9f3;
  border: 1px solid rgba(255, 248, 241, 0.2);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-lg);
}

.hero-card-label,
.transfer-chip,
.menu-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 2rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
}

.hero-card-label {
  margin-bottom: 0.9rem;
  color: #fff8f3;
  background: rgba(255, 255, 255, 0.12);
}

.hero-card h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.4rem;
}

.hero-card-list {
  display: grid;
  gap: 1rem;
  margin: 0;
}

.hero-card-list dt,
.transfer-list dt {
  margin-bottom: 0.2rem;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 242, 234, 0.64);
}

.hero-card-list dd,
.transfer-list dd {
  margin: 0;
  font-weight: 600;
}

.hero-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.5rem;
  font-weight: 700;
  color: #ffd9bf;
}

.hero-card-link::after,
.text-link::after {
  content: "→";
  transition: transform 0.2s ease;
}

.hero-card-link:hover::after,
.hero-card-link:focus-visible::after,
.text-link:hover::after,
.text-link:focus-visible::after {
  transform: translateX(4px);
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 1.4rem;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(255, 247, 241, 0.82);
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section {
  position: relative;
  padding: 6.5rem 0;
}

.section-soft {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.15)),
    var(--bg-soft);
}

.section-intro::before,
.section-menu::before,
.section-contact::before {
  content: "";
  position: absolute;
  inset: auto auto 0 -6rem;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 183, 158, 0.22), transparent 68%);
  pointer-events: none;
}

.intro-grid,
.support-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 2.4rem;
  align-items: center;
}

.section-copy h2,
.section-heading h2,
.contact-copy h2 {
  font-size: clamp(2.8rem, 5vw, 4.3rem);
}

.section-lead,
.section-heading p {
  margin: 1.1rem 0 0;
  color: var(--muted);
  max-width: 42rem;
}

.story-stack {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.story-card,
.support-card,
.contact-card {
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-md);
}

.story-card h3,
.value-card h3,
.menu-card-body h3,
.contact-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.14rem;
}

.story-card p,
.support-card p,
.contact-card p,
.value-card p,
.menu-card-body p,
.map-copy p {
  margin: 0;
  color: var(--muted);
}

.intro-visual {
  position: relative;
  min-height: 38rem;
}

.photo-frame {
  position: absolute;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-frame-main {
  inset: 0 4rem 5rem 0;
}

.photo-frame-accent {
  width: min(54%, 18rem);
  height: 14rem;
  right: 0;
  bottom: 1rem;
  border: 10px solid var(--bg-soft);
}

.quote-card {
  position: absolute;
  left: 1.2rem;
  bottom: 0;
  max-width: 17rem;
  padding: 1.2rem 1.4rem;
  border-radius: 24px;
  background: linear-gradient(135deg, #8b5637, #c18358);
  color: #fff7f2;
  box-shadow: var(--shadow-lg);
}

.quote-card p {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.7rem;
  line-height: 1.05;
}

.section-heading {
  max-width: 44rem;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.value-grid,
.menu-grid,
.support-grid,
.contact-cards {
  display: grid;
  gap: 1.25rem;
}

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

.value-card {
  position: relative;
  min-height: 17rem;
  padding: 1.6rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 247, 240, 0.92)),
    var(--surface-strong);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.value-index {
  display: inline-block;
  margin-bottom: 1.2rem;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--primary);
}

.host-card,
.gallery-tile,
.menu-card {
  border: 0;
  padding: 0;
  background: none;
}

.hosts-slider {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.9rem;
  align-items: center;
}

.hosts-viewport {
  overflow: hidden;
}

.hosts-viewport,
.menu-slider .content-viewport,
.gallery-slider .content-viewport {
  border-radius: 0;
  background: transparent;
}

.content-slider {
  position: relative;
}

.hosts-slider,
.gallery-slider,
.menu-slider {
  background: transparent;
}

.content-viewport {
  overflow: hidden;
  background: transparent;
}

.content-track {
  will-change: transform;
}

.content-arrow {
  width: 2.9rem;
  height: 2.9rem;
  border: 0;
  border-radius: 50%;
  display: none;
  place-items: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(38, 24, 18, 0.14);
  font-size: 1.8rem;
  line-height: 1;
  z-index: 2;
}

.content-slider.is-loop-active .content-arrow {
  display: grid;
}

.content-arrow-prev {
  left: -0.65rem;
}

.content-arrow-next {
  right: -0.65rem;
}

.hosts-track {
  display: flex;
  gap: 1rem;
  align-items: stretch;
  will-change: transform;
}

.host-card {
  flex: 0 0 calc((100% - 2rem) / 3);
  overflow: hidden;
  border-radius: 26px;
  text-align: left;
  background: #fffaf4;
  border: 1px solid var(--line);
  box-shadow: 0 12px 24px rgba(38, 24, 18, 0.08);
}

.hosts-arrow {
  width: 2.9rem;
  height: 2.9rem;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(38, 24, 18, 0.14);
  font-size: 1.8rem;
  line-height: 1;
  z-index: 2;
}

.hosts-arrow:hover,
.hosts-arrow:focus-visible {
  transform: translateY(-1px);
}

.host-card img {
  width: 100%;
  aspect-ratio: 1 / 0.9;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.host-meta {
  display: grid;
  gap: 0.2rem;
  padding: 0.85rem 0.9rem 0.95rem;
}

.host-meta strong {
  font-size: 1.02rem;
}

.host-meta span:last-child {
  color: var(--muted);
  font-size: 0.9rem;
}

.host-card:hover img,
.host-card:focus-visible img,
.gallery-tile:hover img,
.gallery-tile:focus-visible img {
  transform: scale(1.06);
}

.menu-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.menu-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 28px;
  background: #fffaf4;
  border: 1px solid var(--line);
  box-shadow: 0 12px 24px rgba(38, 24, 18, 0.08);
}

.menu-card-featured {
  transform: none;
  background: #fffaf4;
}

.menu-card-photo {
  aspect-ratio: 1.08 / 0.82;
  overflow: hidden;
}

.menu-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.4rem;
}

.menu-badge {
  align-self: flex-start;
  margin-bottom: 0.9rem;
  color: var(--primary-dark);
  background: rgba(214, 183, 158, 0.26);
}

.menu-card-body ul {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.menu-card-body li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1rem;
  border-bottom: 1px solid rgba(79, 52, 40, 0.08);
  color: var(--ink);
}

.menu-card-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1rem;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--primary);
}

.menu-small {
  display: inline-block;
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: auto;
  padding-top: 1.2rem;
  border: 0;
  background: transparent;
  color: var(--primary-dark);
  font-weight: 700;
}

.support-layout {
  align-items: start;
}

.support-grid,
.contact-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 2rem;
}

.support-card strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1.05rem;
}

.transfer-panel {
  position: relative;
  padding: 1.7rem;
  border-radius: 30px;
  background: linear-gradient(180deg, #8b5637 0%, #6e3f24 100%);
  color: #fffaf5;
  box-shadow: var(--shadow-lg);
}

.transfer-chip {
  margin-bottom: 1rem;
  color: #fff6ef;
  background: rgba(255, 255, 255, 0.12);
}

.transfer-panel h3 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 1.25rem;
}

.transfer-list {
  display: grid;
  gap: 1rem;
  margin: 0 0 1.5rem;
}

.transfer-list div {
  padding: 1rem 1.05rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.transfer-account {
  font-size: 1.12rem;
  letter-spacing: 0.04em;
}

.transfer-note {
  min-height: 1.5rem;
  margin: 0.8rem 0 0;
  color: rgba(255, 247, 241, 0.86);
  font-size: 0.92rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-tile {
  overflow: hidden;
  border-radius: 26px;
  background: #fffaf4;
  border: 1px solid var(--line);
  box-shadow: 0 12px 24px rgba(38, 24, 18, 0.08);
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  min-height: 16rem;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.gallery-tile-large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-tile-large img {
  min-height: 33rem;
}

.section-contact {
  padding-bottom: 7rem;
}

.contact-layout {
  align-items: stretch;
}

.map-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}

.map-copy {
  padding: 1.4rem 1.5rem 0;
}

.map-copy span {
  display: inline-block;
  margin-bottom: 0.45rem;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 800;
}

.map-copy strong {
  display: block;
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.map-embed {
  position: relative;
  min-height: 28rem;
  margin: 1.4rem;
  border-radius: 24px;
  overflow: hidden;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.site-footer {
  background: var(--surface-dark);
  color: rgba(255, 246, 239, 0.78);
  padding: 2rem 0;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.site-footer strong {
  display: block;
  margin-bottom: 0.35rem;
  color: #fff;
}

.site-footer p {
  margin: 0;
  max-width: 36rem;
}

.footer-meta {
  display: grid;
  gap: 0.35rem;
  text-align: right;
}

.back-to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 40;
  display: grid;
  place-items: center;
  width: 3.2rem;
  height: 3.2rem;
  border: 0;
  border-radius: 50%;
  background: rgba(32, 24, 22, 0.92);
  color: #fff;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
}

.modal.is-open {
  display: block;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(22, 13, 9, 0.74);
  backdrop-filter: blur(8px);
}

.modal-card {
  position: relative;
  width: min(940px, calc(100% - 2rem));
  max-height: calc(100vh - 2rem);
  margin: 1rem auto;
  overflow: auto;
  border-radius: 30px;
  background: #fffaf4;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  font-size: 1.8rem;
  line-height: 1;
}

.modal-media {
  background: #1a110d;
}

.modal-media img {
  width: 100%;
  max-height: 72vh;
  object-fit: contain;
}

.modal-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.8rem;
  padding: 1rem;
}

.modal-gallery img {
  border-radius: 18px;
  min-height: 12rem;
  object-fit: cover;
}

.modal-body {
  padding: 1.4rem 1.5rem 1.6rem;
}

.modal-body h3 {
  margin: 0;
  font-size: 1.7rem;
}

.modal-body p {
  margin: 0.55rem 0 0;
  color: var(--muted);
}

body.modal-lock {
  overflow: hidden;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-delay-1 {
  transition-delay: 0.08s;
}

.reveal-delay-2 {
  transition-delay: 0.16s;
}

.reveal-delay-3 {
  transition-delay: 0.24s;
}

:focus-visible {
  outline: 3px solid rgba(139, 86, 55, 0.35);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1100px) {
  .hero-grid,
  .intro-grid,
  .support-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: 32rem;
  }

  .value-grid,
  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .menu-card-featured {
    transform: none;
  }

  .intro-visual {
    min-height: 34rem;
    max-width: 42rem;
  }

  .host-card {
    flex-basis: calc((100% - 1rem) / 2);
  }
}

@media (max-width: 860px) {
  .site-header {
    padding: 0.85rem 0;
  }

  .header-row {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-grid;
    place-content: center;
    justify-self: end;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.65rem);
    left: 1.25rem;
    right: 1.25rem;
    display: none;
    padding: 1rem;
    border-radius: 24px;
    background: rgba(255, 251, 246, 0.97);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    text-align: center;
  }

  .nav-open .site-nav {
    display: grid;
    gap: 0.9rem;
  }

  .hero-section {
    min-height: auto;
    padding: 3rem 0 5rem;
  }

  .hero-grid {
    gap: 1.4rem;
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 14vw, 4.9rem);
  }

  .value-grid,
  .support-grid,
  .contact-cards,
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hosts-slider {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .hosts-arrow {
    display: none;
  }

  .host-card {
    flex-basis: calc((100% - 0.8rem) / 2);
  }

  .gallery-tile-large {
    grid-column: span 2;
  }

  .gallery-tile-large img {
    min-height: 22rem;
  }

  .footer-meta {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .container {
    width: min(var(--container), calc(100% - 1rem));
  }

  .hero-section,
  .section {
    padding: 2.7rem 0;
  }

  .hero-section {
    min-height: auto;
    padding-top: 1.8rem;
    padding-bottom: 3.2rem;
  }

  .hero-grid,
  .intro-grid,
  .support-layout,
  .contact-layout {
    gap: 1rem;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-copy h1 {
    font-size: clamp(2.8rem, 11vw, 4rem);
  }

  .hero-lead {
    margin-top: 0.9rem;
    font-size: 0.95rem;
  }

  .hero-actions {
    margin-top: 1.2rem;
  }

  .hero-tagline {
    margin-top: 0.8rem;
    font-size: 0.93rem;
  }

  .hero-card {
    max-width: none;
    padding: 1rem;
    border-radius: 22px;
  }

  .hero-card h2 {
    margin-bottom: 1rem;
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .hero-card-list {
    gap: 0.7rem;
  }

  .hero-card-link {
    margin-top: 1rem;
    font-size: 0.92rem;
  }

  .section-heading,
  .section-copy {
    text-align: left;
  }

  .section-heading {
    max-width: none;
    margin-bottom: 1rem;
  }

  .section-copy h2,
  .section-heading h2,
  .contact-copy h2,
  .transfer-panel h3 {
    font-size: clamp(2rem, 9vw, 3rem);
    line-height: 1.02;
  }

  .section-lead,
  .section-heading p {
    margin-top: 0.7rem;
    max-width: none;
    font-size: 0.95rem;
  }

  .story-stack {
    gap: 0.7rem;
    margin-top: 1rem;
  }

  .intro-visual {
    display: none;
  }

  .photo-frame-accent,
  .quote-card {
    display: none;
  }

  .hosts-slider {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }

  .hosts-viewport {
    padding: 0 0.45rem;
  }

  .host-card {
    flex-basis: 74%;
    min-width: 74%;
    border-radius: 22px;
  }

  .host-card img {
    aspect-ratio: 1 / 0.82;
  }

  .host-meta {
    padding: 0.7rem 0.8rem 0.8rem;
  }

  .menu-slider .content-arrow,
  .gallery-slider .content-arrow {
    display: none;
  }

  .menu-slider .content-viewport,
  .gallery-slider .content-viewport {
    padding: 0 0.45rem;
  }

  .menu-slider .menu-grid,
  .gallery-slider .gallery-grid {
    display: flex;
    gap: 0.8rem;
    align-items: stretch;
  }

  .menu-slider .menu-card {
    flex: 0 0 86%;
    min-width: 86%;
    border-radius: 22px;
  }

  .menu-card-featured {
    transform: none;
  }

  .menu-card-photo {
    aspect-ratio: 1.15 / 0.56;
  }

  .menu-card-body {
    padding: 1rem;
  }

  .menu-card-body p {
    font-size: 0.92rem;
  }

  .menu-card-body ul {
    margin-top: 0.8rem;
  }

  .menu-card-body li {
    padding: 0.45rem 0 0.45rem 0.85rem;
  }

  .text-link {
    padding-top: 0.9rem;
    font-size: 0.92rem;
  }

  .support-grid,
  .contact-cards {
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
    margin-top: 1rem;
  }

  .story-card,
  .support-card,
  .contact-card {
    padding: 0.9rem;
  }

  .story-card h3,
  .menu-card-body h3,
  .contact-card h3 {
    font-size: 1rem;
  }

  .support-card strong {
    font-size: 0.98rem;
  }

  .support-card p,
  .contact-card p {
    font-size: 0.88rem;
  }

  .transfer-panel {
    padding: 1.15rem;
    border-radius: 22px;
  }

  .transfer-list {
    gap: 0.7rem;
    margin-bottom: 1rem;
  }

  .transfer-list div {
    padding: 0.8rem 0.9rem;
  }

  .gallery-slider .gallery-tile,
  .gallery-slider .gallery-tile-large {
    flex: 0 0 86%;
    min-width: 86%;
    border-radius: 22px;
  }

  .gallery-slider .gallery-tile-large {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-slider .gallery-tile img,
  .gallery-slider .gallery-tile-large img {
    min-height: 12rem;
  }

  .map-card {
    border-radius: 22px;
  }

  .map-copy {
    padding: 0.95rem 0.95rem 0;
  }

  .map-copy strong {
    font-size: 1.35rem;
  }

  .map-embed {
    min-height: 15rem;
    margin: 0.85rem;
    border-radius: 18px;
  }

  .site-footer {
    padding: 1.4rem 0;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 0.5rem 0;
  }

  .brand-mark {
    width: 58px;
    height: 58px;
  }

  .brand-copy strong {
    font-size: 0.98rem;
    letter-spacing: 0.1em;
  }

  .brand-copy span:last-child {
    font-size: 0.68rem;
  }

  .hero-section {
    padding-top: 1.5rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.45rem, 13vw, 3.35rem);
  }

  .hero-lead {
    font-size: 0.92rem;
  }

  .hero-tagline {
    font-size: 0.9rem;
  }

  .hero-card {
    padding: 0.9rem;
  }

  .hero-card h2 {
    font-size: clamp(1.6rem, 9vw, 2rem);
  }

  .hero-actions {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 0.6rem;
  }

  .btn,
  .btn-light {
    width: 100%;
  }

  .hero-actions .btn {
    width: auto;
    flex: 0 0 auto;
    min-height: 2.35rem;
    padding: 0.52rem 0.82rem;
    font-size: 0.82rem;
    line-height: 1.1;
  }

  .scroll-indicator {
    display: none;
  }

  .host-card {
    flex-basis: 78%;
    min-width: 78%;
  }

  .menu-slider .menu-card {
    flex-basis: 90%;
    min-width: 90%;
  }

  .gallery-slider .gallery-tile,
  .gallery-slider .gallery-tile-large {
    flex-basis: 90%;
    min-width: 90%;
  }

  .transfer-account {
    font-size: 0.94rem;
  }

  .support-grid,
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .modal-card {
    width: calc(100% - 1rem);
    margin: 0.5rem auto;
    border-radius: 24px;
  }

  .modal-gallery {
    grid-template-columns: 1fr;
  }

  .back-to-top {
    width: 2.9rem;
    height: 2.9rem;
    right: 0.8rem;
    bottom: 0.8rem;
  }
}

@media (max-width: 480px) {
  .host-card {
    flex-basis: 82%;
    min-width: 82%;
  }

  .menu-slider .menu-card {
    flex-basis: 92%;
    min-width: 92%;
  }

  .gallery-slider .gallery-tile,
  .gallery-slider .gallery-tile-large {
    flex-basis: 92%;
    min-width: 92%;
  }

  .support-grid,
  .contact-cards,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-tile-large {
    grid-column: span 1;
  }
}
