/* ===== PALETA + TYPOGRAFIA ===== */

:root {
  --wine: #8b1e2d;
  --wine-dark: #5a1320;
  --cream: #fdfbf6;
  --cream-2: #f5efe3;
  --ink: #2a2a2a;
  --muted: #6a6a6a;
  --border: rgba(139, 30, 45, 0.18);

  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-hero: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  /* aliasy dla wstecznej kompatybilności */
  --font-serif: var(--font-display);
  --font-sans: var(--font-body);

  --max-w: 1240px;
  --gutter: clamp(20px, 4vw, 56px);
}

/* Cormorant Garamond — delikatne tracking dla tytułów */
.h1, .h2, .hero__title, .concept__title, .author__name,
.menu-group__title, .lodging__group-title, .location__place,
.location__block-title, .hero__date-day, .cta-strip__lead,
.final-cta__recap, .catering__title, .gallery__title, .offer__title,
.winery__title, .winery__quote-text {
  letter-spacing: -0.005em;
}

/* ===== RESET ===== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-weight: 500;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
strong { font-weight: 700; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: 0; background: 0; cursor: pointer; color: inherit; }
ul { list-style: none; }

/* ===== TYPOGRAFIA — KLASY ===== */

.h1 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.06;
  letter-spacing: -0.5px;
  color: var(--wine);
}

.h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.3px;
  color: var(--wine);
}

.h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.25;
  color: var(--ink);
}

.eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--wine);
  font-weight: 600;
  margin-bottom: 16px;
}

.lead {
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.65;
  color: #3a3a3a;
  max-width: 56ch;
}

.muted { color: var(--muted); }

/* ===== UTILITY ===== */

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: clamp(64px, 9vw, 120px) 0;
}

.section--alt { background: var(--cream-2); }

/* ===== PRZYCISKI ===== */

.btn {
  display: inline-block;
  padding: 16px 36px;
  border-radius: 100px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.2s ease;
  border: 1.5px solid currentColor;
  white-space: nowrap;
}

.btn--primary {
  background: var(--wine);
  color: #fff;
  border-color: var(--wine);
}
.btn--primary:hover { background: var(--wine-dark); border-color: var(--wine-dark); }

.btn--ghost {
  background: transparent;
  color: var(--wine);
  border-color: var(--wine);
}
.btn--ghost:hover { background: var(--wine); color: #fff; }

.btn--ghost-white {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn--ghost-white:hover { background: #fff; color: var(--wine); }

.btn--large { padding: 20px 48px; font-size: 13px; }

/* ===== ARROW (→) jako element ===== */

.arrow::before {
  content: "→";
  display: inline-block;
  margin-right: 10px;
  font-weight: 400;
}

/* ===== TOP NAV ===== */

.topnav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
  padding: 16px 0;
  background: transparent;
}

.topnav.is-scrolled {
  background: rgba(253, 251, 246, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
  padding: 10px 0;
}

.topnav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.topnav__brand {
  display: flex;
  flex-direction: column;
  gap: 0;
  color: #fff;
  transition: color 0.3s ease;
  flex-shrink: 0;
  line-height: 1.1;
}
.topnav.is-scrolled .topnav__brand { color: var(--wine); }

.topnav__brand-line {
  font-family: var(--font-display);
  font-size: 16px;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.005em;
}
.topnav__brand-line:last-child { opacity: 0.75; }

.topnav__menu {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.topnav__menu a {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s ease;
  padding: 6px 0;
}
.topnav.is-scrolled .topnav__menu a { color: var(--muted); }
.topnav__menu a:hover { color: #fff; }
.topnav.is-scrolled .topnav__menu a:hover { color: var(--wine); }

.topnav__cta {
  display: inline-block;
  padding: 11px 22px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.6);
  color: #fff;
  border-radius: 100px;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.25s;
  backdrop-filter: blur(4px);
}
.topnav__cta:hover { background: #fff; color: var(--wine); border-color: #fff; }
.topnav.is-scrolled .topnav__cta {
  background: var(--wine);
  color: #fff;
  border-color: var(--wine);
}
.topnav.is-scrolled .topnav__cta:hover { background: var(--wine-dark); border-color: var(--wine-dark); }

/* Hamburger button */
.topnav__hamburger {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  background: transparent;
  border: 0;
  padding: 0;
  color: #fff;
  transition: color 0.3s ease;
}
.topnav.is-scrolled .topnav__hamburger { color: var(--wine); }
.topnav__hamburger span {
  width: 22px;
  height: 1.5px;
  background: currentColor;
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

/* X transformation when open */
.topnav.is-menu-open .topnav__hamburger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.topnav.is-menu-open .topnav__hamburger span:nth-child(2) { opacity: 0; }
.topnav.is-menu-open .topnav__hamburger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 900px) {
  .topnav__hamburger { display: flex; }
  .topnav__cta { display: none; }

  .topnav__brand {
    flex-direction: row;
    gap: 6px;
    flex-wrap: wrap;
  }
  .topnav__brand-line { font-size: 15px; }

  .topnav__menu {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 24px 28px;
    background: var(--cream);
    box-shadow: 0 10px 40px rgba(0,0,0,0.18);
    border-top: 1px solid var(--border);

    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0.25s;
  }
  .topnav.is-menu-open .topnav__menu {
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0s;
  }

  .topnav__menu a {
    display: block;
    color: var(--ink) !important;
    font-size: 14px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    letter-spacing: 1.5px;
  }
  .topnav__menu li:last-child a { border-bottom: 0; }

  /* Mobile CTA wewnątrz menu (real link) */
  .topnav__menu-cta-item { margin-top: 18px; }
  .topnav__menu-cta-item a {
    background: var(--wine);
    color: #fff !important;
    text-align: center;
    border-radius: 100px;
    padding: 14px 24px !important;
    border: 0 !important;
    font-weight: 700 !important;
  }
}

/* desktop — ukryj item CTA w menu (CTA jest jako osobny button) */
@media (min-width: 901px) {
  .topnav__menu-cta-item { display: none; }
}

/* ===== HERO ===== */

.hero {
  position: relative;
  min-height: 100vh;
  background: url('assets/hero.jpg') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.28) 0%, rgba(0,0,0,0.05) 35%, rgba(0,0,0,0.45) 100%);
  z-index: 1;
}

/* Box wrap — paddings dla oddechu z nav i scroll indicator */
.hero__box-wrap {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 100px;
  padding-bottom: 100px;
}

.hero__box {
  background: rgba(253, 251, 246, 0.65);
  padding: clamp(32px, 3.5vw, 48px) clamp(28px, 4vw, 56px);
  max-width: 820px;
  width: 100%;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hero__box .eyebrow { margin-bottom: 22px; opacity: 0.9; }

/* Tytuł hero — Fraunces, jedna linia na desktopie */
.hero__title {
  font-family: var(--font-hero);
  font-size: clamp(34px, 4.4vw, 54px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--wine);
  font-weight: 500;
  margin-bottom: 24px;
  white-space: nowrap;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}

.hero__lead {
  font-family: var(--font-body);
  color: #5a5a5a;
  font-size: 15px;
  line-height: 1.5;
  margin: 0 auto 28px;
  font-weight: 500;
}

/* Hero action — 2-col layout: data po lewej, CTA po prawej */
.hero__action {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  grid-template-rows: auto;
  gap: 36px;
  align-items: center;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.hero__action::before {
  content: "";
  grid-column: 2;
  grid-row: 1;
  width: 1px;
  height: 80%;
  background: var(--border);
  align-self: center;
}

/* Block daty — LEWA col 1, justuje się do prawej (bliżej środka) */
.hero__date-block {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  text-align: right;
}

/* CTA kolumna — PRAWA col 3, button justuje się do lewej (bliżej środka) */
.hero__cta-col {
  grid-column: 3;
  grid-row: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.hero__date-line {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1;
  color: var(--wine);
  font-weight: 500;
  letter-spacing: 0;
}
.hero__date-sub {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.hero__deadline-note {
  margin-top: 24px;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  text-align: center;
}
.hero__deadline-note strong { color: var(--wine); font-weight: 700; }
.hero__countdown { opacity: 0.7; }

/* Scroll indicator — strzałka na dole hero zachęcająca do przewijania */
.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 4;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #fff;
  opacity: 0.85;
  transition: opacity 0.2s, transform 0.2s;
}
.hero__scroll:hover { opacity: 1; transform: translateX(-50%) translateY(2px); }

.hero__scroll-label {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 600;
}
.hero__scroll-arrow {
  width: 1px;
  height: 28px;
  background: currentColor;
  position: relative;
  animation: scroll-bounce 1.8s ease-in-out infinite;
}
.hero__scroll-arrow::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 8px;
  height: 8px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateX(-50%) rotate(45deg);
  margin-bottom: -2px;
}
@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); opacity: 0.85; }
  50% { transform: translateY(6px); opacity: 1; }
}

/* Utility: <br> widoczne tylko na mobile */
.br-mobile { display: none; }
@media (max-width: 700px) {
  .br-mobile { display: inline; }
}

/* Mobile hero — niższy (78vh) + przezroczysty box + biały tekst na overlayu */
@media (max-width: 700px) {
  .hero {
    min-height: 78vh;
  }
  .hero__title {
    white-space: normal;
    font-size: clamp(34px, 9vw, 44px);
    line-height: 1.05;
  }
  .hero__overlay {
    background:
      linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.20) 30%, rgba(0,0,0,0.80) 100%);
  }
  .hero__box {
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
    padding: 28px 8px;
    max-width: none;
  }
  .hero__box .eyebrow,
  .hero__title,
  .hero__lead,
  .hero__date-line,
  .hero__date-sub,
  .hero__deadline-note,
  .hero__deadline-note strong {
    color: #fff;
  }
  .hero__date-block {
    border-color: rgba(255,255,255,0.35);
  }
  .hero__lead { color: rgba(255,255,255,0.85); }
  .hero__deadline-note { color: rgba(255,255,255,0.7); }
  .btn--primary {
    background: #fff;
    color: var(--wine);
    border-color: #fff;
  }
  .btn--primary:hover { background: var(--cream); border-color: var(--cream); }
  .hero__box-wrap { padding-bottom: 80px; padding-top: 70px; align-items: center; }
  .hero__scroll { bottom: 18px; }

  /* Mobile — stack 1 kolumna, full width data + btn */
  .hero__action {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 24px;
    padding-top: 22px;
    border-top-color: rgba(255,255,255,0.25);
  }
  .hero__action::before { display: none; }

  .hero__date-block {
    grid-column: 1;
    grid-row: 1;
    align-items: center;
    text-align: center;
  }
  .hero__date-line { font-size: clamp(22px, 5.5vw, 26px); }

  .hero__cta-col {
    grid-column: 1;
    grid-row: 2;
    align-items: stretch;
    text-align: center;
    width: 100%;
  }
  .hero__cta-col .btn {
    width: 100%;
    display: block;
    text-align: center;
  }
}

/* ===== SECTION HEAD (wspólny) ===== */

.section-head {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head .eyebrow { margin-bottom: 18px; }

/* ===== KONCEPT — 2-col ===== */

.concept-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  max-width: 1140px;
  margin: 0 auto 80px;
}

.concept__left {
  margin-top: -32px;
}

.concept__left .eyebrow { margin-bottom: 22px; }

.concept__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.2vw, 64px);
  line-height: 1.0;
  letter-spacing: -0.015em;
  color: var(--wine);
  font-weight: 500;
  margin-bottom: 32px;
}
.concept__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
}
.concept__lead {
  font-size: 17px;
  line-height: 1.7;
  color: #3a3a3a;
  margin-bottom: 18px;
  font-weight: 500;
}
.concept__lead--soft {
  color: var(--muted);
  font-style: italic;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 0;
}

/* Right column — kogo wziąć */
.concept__right { padding-top: 4px; }
.who-label {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--wine);
  font-weight: 700;
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.who-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin: 0; padding: 0;
}
.who-list__item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  align-items: start;
}
.who-list__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--wine);
  background: var(--cream-2);
  border-radius: 8px;
  flex-shrink: 0;
}
.who-list__icon svg { width: 24px; height: 24px; }

.who-list__text h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 6px;
  letter-spacing: -0.005em;
}
.who-list__text p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--muted);
}

/* === WHO FAMILY callout === */

.who-family {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.who-family__title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.005em;
  line-height: 1.1;
  margin-bottom: 8px;
}
.who-family__title em {
  font-style: italic;
  color: var(--wine);
  font-weight: 500;
}
.who-family__body p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--muted);
}

/* === PACT (gwarancja) — BOX wewnątrz container (12 cols) === */

.pact {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 28px;
  align-items: center;
  margin-top: clamp(48px, 6vw, 72px);
  padding: 28px 32px;
  background: var(--cream-2);
  border-left: 3px solid var(--wine);
  position: relative;
}

.pact__stamp {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--wine);
  border-radius: 50%;
  color: var(--wine);
  background: var(--cream);
  flex-shrink: 0;
}
.pact__stamp svg { width: 26px; height: 26px; }

.pact__text {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 26px);
  line-height: 1.15;
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 10px;
  letter-spacing: -0.005em;
}
.pact__text strong { color: var(--wine); font-weight: 500; }
.pact__text em { font-style: italic; font-weight: 500; color: var(--wine); }

.pact__sub {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 80ch;
}

@media (max-width: 900px) {
  .concept-2col { grid-template-columns: 1fr; gap: 48px; }
  .concept__left { margin-top: 0; }
  .pact { grid-template-columns: 1fr; gap: 22px; padding: 32px 24px; }
  .pact__stamp { width: 56px; height: 56px; }
  .pact__stamp svg { width: 26px; height: 26px; }
}

/* ===== OFERTA / CO CZEKA ===== */

.offer { max-width: 1080px; margin: 0 auto; }

.offer__head { max-width: 720px; }
.offer__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 64px);
  line-height: 1.0;
  letter-spacing: -0.015em;
  color: var(--wine);
  font-weight: 500;
  margin-bottom: 18px;
}
.offer__title em { font-style: italic; font-weight: 400; color: var(--ink); }
.offer__lead {
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 68ch;
  margin: 0 auto;
  text-wrap: balance;
}
.offer__lead strong { color: var(--wine); font-weight: 600; }

.offer__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px 48px;
}

.offer__item {
  text-align: left;
  position: relative;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.offer__num {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--wine);
  opacity: 0.55;
  font-weight: 500;
  font-style: italic;
  position: absolute;
  top: -10px;
  left: 0;
  background: var(--cream-2);
  padding-right: 12px;
}

.offer__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--wine);
  margin: 6px 0 18px;
}
.offer__icon svg { width: 38px; height: 38px; }

.offer__name {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--ink);
  font-weight: 400;
  margin-bottom: 10px;
  line-height: 1.2;
  letter-spacing: -0.005em;
}

.offer__item p { color: var(--muted); font-size: 14.5px; line-height: 1.6; }

@media (max-width: 900px) {
  .offer__grid { grid-template-columns: repeat(2, 1fr); gap: 48px 32px; }
}
@media (max-width: 540px) {
  .offer__grid { grid-template-columns: 1fr; gap: 44px; }
}

/* ===== WINNICA SILENSI — 2-col ===== */

.section--winery { padding: clamp(80px, 11vw, 140px) 0; }

.winery__cols {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 64px;
}

.winery__info { max-width: 460px; }
.winery__info .eyebrow { margin-bottom: 18px; }

.winery__source {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  padding: 10px 18px 10px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: transparent;
  transition: background 0.25s ease, border-color 0.25s ease;
  color: var(--wine);
}
.winery__source:hover {
  background: var(--cream-2);
  border-color: var(--wine);
}
.winery__logo {
  height: 36px;
  width: auto;
  flex-shrink: 0;
  display: block;
}
.winery__source-link {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--wine);
  font-weight: 700;
}
.winery__title {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--wine);
  font-weight: 500;
  margin-bottom: 26px;
}
.winery__title em { font-style: italic; font-weight: 400; }

.winery__lead {
  font-size: 17px;
  line-height: 1.65;
  color: #3a3a3a;
  margin-bottom: 18px;
  font-weight: 500;
}
.winery__lead--soft {
  color: var(--muted);
  font-size: 16px;
}
.winery__lead strong { color: var(--wine); font-weight: 600; }

/* Photos — duże lead + 3 thumbs poniżej */
.winery__photos {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.winery__photo {
  display: block;
  overflow: hidden;
  background: var(--cream-2);
  cursor: zoom-in;
  border-radius: 2px;
  position: relative;
}
.winery__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.winery__photo:hover img { transform: scale(1.04); }

.winery__photo--lead {
  aspect-ratio: 4 / 3;
}

.winery__thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.winery__photo--thumb {
  aspect-ratio: 4 / 3;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}
.winery__photo--thumb:hover { opacity: 1; }
.winery__photo--thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.15));
  pointer-events: none;
}

/* Facts strip — typografia jako bohater */
.winery__facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.winery__fact { text-align: center; }
.winery__fact-num {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1;
  color: var(--wine);
  font-weight: 500;
  font-style: italic;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.winery__fact-label {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.link-arrow {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--wine);
  font-weight: 700;
  padding: 6px 0;
  border-bottom: 1px solid currentColor;
  transition: opacity 0.2s;
}
.link-arrow::after { content: " →"; }
.link-arrow:hover { opacity: 0.7; }

@media (max-width: 900px) {
  .winery__cols { grid-template-columns: 1fr; gap: 36px; }
  .winery__facts { grid-template-columns: 1fr 1fr; gap: 24px; }
}

/* ===== CATERING (Kocharz) — kompaktowa ===== */

.section--catering { padding: clamp(72px, 9vw, 112px) 0; }

.catering { max-width: var(--max-w); margin: 0 auto; }

.catering__cols {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 72px;
  align-items: start;
}

/* Lewa kolumna — info + zdjęcia (sticky) */
.catering__info {
  max-width: 480px;
  position: sticky;
  top: 96px;
  align-self: start;
}
.catering__info .eyebrow { margin-bottom: 18px; }
.catering__title {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 72px);
  line-height: 0.95;
  color: var(--wine);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 26px;
}
.catering__title em { font-style: italic; font-weight: 400; }

.catering__lead {
  font-size: 17px;
  line-height: 1.65;
  color: #3a3a3a;
  margin-bottom: 18px;
  font-weight: 500;
}

.catering__site {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--wine);
  font-weight: 700;
  border-bottom: 1px solid currentColor;
  padding: 6px 0;
  margin-top: 4px;
  transition: opacity 0.2s;
}
.catering__site:hover { opacity: 0.7; }

.catering__photos {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin-top: 36px;
}
.catering__photo {
  display: block;
  overflow: hidden;
  background: var(--cream-2);
  cursor: zoom-in;
  border-radius: 2px;
  aspect-ratio: 1 / 1;
  opacity: 0.92;
  transition: opacity 0.25s ease;
}
.catering__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.catering__photo:hover { opacity: 1; }
.catering__photo:hover img { transform: scale(1.04); }

/* Prawa kolumna — menu */
.catering__menu-col {
  position: relative;
}

.catering__menu-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.2;
  color: var(--wine);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  text-wrap: balance;
}
.catering__menu-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
}

.catering__menu-inner {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

/* Toggle mobilny — domyślnie ukryty na desktopie */
.catering__menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-top: 20px;
  padding: 14px 24px;
  background: transparent;
  border: 1.5px solid var(--wine);
  color: var(--wine);
  border-radius: 100px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.catering__menu-toggle:hover {
  background: var(--wine);
  color: #fff;
}
.catering__menu-toggle-chevron {
  display: inline-block;
  font-size: 14px;
  line-height: 1;
  transition: transform 0.3s ease;
}
.catering__menu-toggle[aria-expanded="true"] .catering__menu-toggle-chevron {
  transform: rotate(180deg);
}

.menu-group__title {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--wine);
  font-weight: 500;
  font-style: italic;
  margin-bottom: 10px;
  letter-spacing: 0;
}
.menu-group ul li {
  padding: 5px 0 5px 16px;
  position: relative;
  font-size: 14px;
  line-height: 1.5;
  color: #3a3a3a;
}
.menu-group ul li::before {
  content: "·";
  position: absolute;
  left: 0;
  top: 4px;
  color: var(--wine);
  font-weight: 700;
}

.menu-note {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  font-style: italic;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}
.menu-note em {
  color: var(--wine);
  font-style: italic;
  font-weight: 500;
}

@media (max-width: 900px) {
  .catering__cols { grid-template-columns: 1fr; gap: 48px; }
  .catering__info { max-width: none; position: static; }

  /* Tytuł menu — krótszy na mobile */
  .catering__menu-title-prefix { display: none; }

  /* Menu na mobile: collapse z fade-out */
  .catering__menu-inner {
    max-height: 360px;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(180deg, #000 65%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 65%, transparent 100%);
    transition: max-height 0.5s ease;
  }
  .catering__menu-inner.is-expanded {
    max-height: 8000px;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .catering__menu-toggle { display: inline-flex; }
}

/* ===== GALERIA — full-width + collapse ===== */

.section--gallery { background: var(--cream-2); padding: clamp(72px, 10vw, 130px) 0 0; }

.gallery__head {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}
.gallery__head .eyebrow { margin-bottom: 16px; }

.gallery__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 64px);
  line-height: 1.0;
  color: var(--wine);
  font-weight: 400;
  letter-spacing: -0.015em;
  margin-bottom: 14px;
}
.gallery__title em { font-style: italic; font-weight: 400; }

.gallery__subtitle {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

/* Full-width wrap — wychodzi poza container */
.gallery__wrap {
  padding: 0 12px;
}

.gallery__wrap {
  padding: 0 12px;
  position: relative;
}

/* Featured: 5 zdjęć na top w grid 5-col, zawsze widoczne */
.gallery__featured {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-bottom: 12px;
}
.gallery__featured .gallery__item {
  aspect-ratio: 4 / 3;
}
.gallery__featured .gallery__item img {
  height: 100%;
  object-fit: cover;
}

/* Rest: masonry, collapsed z mask */
.gallery__rest {
  column-count: 4;
  column-gap: 12px;
  max-height: 700px;
  overflow: hidden;
  transition: max-height 0.7s ease;
  -webkit-mask-image: linear-gradient(180deg, #000 50%, #000 65%, transparent 96%);
          mask-image: linear-gradient(180deg, #000 50%, #000 65%, transparent 96%);
}
.gallery__rest.is-expanded {
  max-height: 20000px;
  -webkit-mask-image: none;
          mask-image: none;
}

.gallery__item {
  display: block;
  cursor: zoom-in;
  overflow: hidden;
  background: var(--cream);
}
.gallery__rest .gallery__item {
  margin-bottom: 12px;
  break-inside: avoid;
}
.gallery__item img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}
.gallery__item:hover img { transform: scale(1.03); }

/* Expand button — duża "ławka" przycisku, podświetla decyzję */
.gallery__expand {
  position: relative;
  text-align: center;
  padding: 32px 20px 80px;
  margin-top: -80px;
  z-index: 5;
}

.gallery__expand-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--cream);
  border: 1.5px solid var(--wine);
  color: var(--wine);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 14px 30px rgba(0,0,0,0.08);
}
.gallery__expand-btn:hover {
  background: var(--wine);
  color: #fff;
}

.gallery__expand-chevron {
  display: inline-block;
  font-size: 14px;
  line-height: 1;
  transition: transform 0.3s ease;
}
.gallery__expand-btn[aria-expanded="true"] .gallery__expand-chevron {
  transform: rotate(180deg);
}

@media (max-width: 1100px) {
  .gallery__rest { column-count: 3; }
}
@media (max-width: 700px) {
  .gallery__featured { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .gallery__featured .gallery__item:nth-child(5) {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 9;
  }
  .gallery__rest { column-count: 2; column-gap: 8px; }
  .gallery__rest .gallery__item { margin-bottom: 8px; }
}

/* ===== LIGHTBOX ===== */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
  cursor: zoom-out;
}
.lightbox.is-open { display: flex; }

.lightbox__img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  cursor: default;
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 40px;
  line-height: 1;
  padding: 12px 16px;
  cursor: pointer;
  font-family: var(--font-sans);
  opacity: 0.7;
  transition: opacity 0.2s;
}
.lightbox__close:hover,
.lightbox__nav:hover { opacity: 1; }

.lightbox__close { top: 20px; right: 28px; font-size: 36px; }
.lightbox__nav { top: 50%; transform: translateY(-50%); font-size: 56px; }
.lightbox__nav--prev { left: 20px; }
.lightbox__nav--next { right: 20px; }

.lightbox__counter {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  opacity: 0.7;
  font-size: 13px;
  letter-spacing: 1px;
}

@media (max-width: 600px) {
  .lightbox { padding: 16px; }
  .lightbox__nav { font-size: 42px; padding: 8px 10px; }
  .lightbox__nav--prev { left: 4px; }
  .lightbox__nav--next { right: 4px; }
}

/* ===== CTA BANNER — wine solid, in-between sections ===== */

.cta-banner {
  background: var(--wine);
  color: #fff;
  padding: clamp(48px, 6vw, 72px) 0;
  position: relative;
}
.cta-banner::before,
.cta-banner::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255,255,255,0.12);
}
.cta-banner::before { top: 0; }
.cta-banner::after { bottom: 0; }

.cta-banner__inner {
  display: grid;
  grid-template-columns: auto 1px 1fr auto;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

/* Deadline block */
.cta-banner__deadline {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cta-banner__deadline-label {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
}
.cta-banner__deadline-date {
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.cta-banner__deadline-day {
  font-family: var(--font-display);
  font-size: clamp(44px, 4.6vw, 60px);
  line-height: 0.9;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.02em;
}
.cta-banner__deadline-month {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 26px);
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,0.88);
}
.cta-banner__deadline-count {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
}

/* Vertical divider */
.cta-banner__divider {
  width: 1px;
  height: 100px;
  background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.25) 50%, transparent 100%);
}

/* Body — title + sub */
.cta-banner__body { max-width: 760px; }
.cta-banner__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.8vw, 34px);
  line-height: 1.2;
  font-weight: 500;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.005em;
  text-wrap: balance;
}
.cta-banner__title em {
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,0.78);
}
.cta-banner__sub {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255,255,255,0.72);
  margin: 0;
  white-space: nowrap;
}

/* CTA button — outline white, fills on hover */
.cta-banner__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: transparent;
  color: #fff;
  border: 1.5px solid #fff;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  transition: background 0.25s, color 0.25s;
  white-space: nowrap;
}
.cta-banner__btn:hover {
  background: #fff;
  color: var(--wine);
}
.cta-banner__btn-arrow {
  font-size: 14px;
  transition: transform 0.25s;
}
.cta-banner__btn:hover .cta-banner__btn-arrow { transform: translateX(3px); }

@media (max-width: 900px) {
  .cta-banner__inner {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }
  .cta-banner__deadline { align-items: center; }
  .cta-banner__divider { display: none; }
  .cta-banner__body { margin: 0 auto; }
  .cta-banner__sub { white-space: normal; }
  .cta-banner__btn { justify-content: center; align-self: center; }
}

/* ===== LOKALIZACJA ===== */

.location__title { margin-bottom: 48px; text-align: center; }

.location__cols {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
}

.location__place {
  color: var(--wine);
  font-family: var(--font-serif);
  margin-bottom: 6px;
}
.location__address {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 24px;
}

.location__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border);
}
.location__links a {
  font-size: 13px;
  color: var(--wine);
  font-weight: 600;
  letter-spacing: 0.3px;
}
.location__links a:hover { color: var(--wine-dark); }

.location__block { margin-bottom: 24px; }
.location__block:last-child { margin-bottom: 0; }
.location__block-title {
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--wine);
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}
.location__block p {
  font-size: 15px;
  color: #3a3a3a;
  line-height: 1.6;
}

.location__map { height: 100%; min-height: 480px; }
.location__map iframe {
  width: 100%;
  height: 100%;
  min-height: 480px;
  border: 0;
  border-radius: 4px;
}

@media (max-width: 900px) {
  .location__cols { grid-template-columns: 1fr; gap: 36px; }
  .location__map { min-height: 360px; }
  .location__map iframe { min-height: 360px; }
}

/* ===== NOCLEG — prosta lista pill-kafelków ===== */

.lodging__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 52px);
  line-height: 1.0;
  color: var(--wine);
  font-weight: 500;
  letter-spacing: -0.015em;
  margin-bottom: 16px;
}
.lodging__title em { font-style: italic; font-weight: 400; }
.lodging__intro {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  max-width: 52ch;
  margin: 0 auto;
}

.lodging__group {
  max-width: 760px;
  margin: 0 auto 40px;
}
.lodging__group:last-child { margin-bottom: 0; }

.lodging__group-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--wine);
  font-weight: 500;
  letter-spacing: -0.005em;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.lodging__group-meta {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  font-family: var(--font-body);
}

.lodging__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 12px;
  list-style: none;
  padding: 0;
}
.lodging__list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 22px;
  background: var(--cream-2);
  border: 1px solid transparent;
  border-radius: 999px;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.lodging__list a:hover {
  background: var(--cream);
  border-color: var(--wine);
  transform: translateX(4px);
}
.lodging__name {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.005em;
}
.lodging__arrow {
  font-size: 18px;
  color: var(--wine);
  font-weight: 700;
  transition: transform 0.2s;
  flex-shrink: 0;
}
.lodging__list a:hover .lodging__arrow { transform: translateX(3px); }

@media (max-width: 600px) {
  .lodging__group-title {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .lodging__list { grid-template-columns: 1fr; }
  .lodging__list a { padding: 14px 18px; }
  .lodging__name { font-size: 16px; }
}

/* ===== KOSZTY — wine bg, biały tekst ===== */

.section--costs {
  background: var(--wine);
  color: #fff;
  position: relative;
}
.section--costs::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: rgba(255,255,255,0.12);
}
.section--costs .eyebrow {
  color: rgba(255,255,255,0.7);
}

.costs__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 52px);
  line-height: 1.0;
  color: #fff;
  font-weight: 500;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}
.costs__title em {
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,0.78);
}

.costs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 48px 0;
  border-top: 1px solid rgba(255,255,255,0.18);
  border-bottom: 1px solid rgba(255,255,255,0.18);
  max-width: 900px;
  margin: 0 auto 36px;
}
.costs__item { text-align: center; }
.costs__price {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1;
  font-weight: 500;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.costs__price em {
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
}
.costs__price--free {
  font-size: clamp(28px, 3.4vw, 40px);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(40px, 5vw, 60px);
}
.costs__label {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  font-weight: 600;
}

.costs__nonprofit {
  text-align: center;
  font-style: italic;
  color: rgba(255,255,255,0.72);
  font-size: 15px;
  line-height: 1.65;
  max-width: 64ch;
  margin: 0 auto;
}
.costs__nonprofit em {
  font-style: italic;
  color: #fff;
  font-weight: 500;
}

@media (max-width: 700px) {
  .costs__grid { grid-template-columns: 1fr; gap: 28px; padding: 32px 0; }
}

/* ===== AUTOR ===== */

.author__cols {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  align-items: start;
  max-width: 980px;
  margin: 0 auto;
}

.author__photo img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid var(--border);
}

.author__name { margin-bottom: 24px; }

.author__text p {
  font-size: 16px;
  line-height: 1.75;
  color: #3a3a3a;
  margin-bottom: 18px;
}
.author__text a {
  color: var(--wine);
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}
.author__text a:hover { color: var(--wine-dark); }

@media (max-width: 700px) {
  .author__cols { grid-template-columns: 1fr; gap: 32px; max-width: 480px; }
  .author__photo { max-width: 240px; }
}

/* ===== FOOTER ===== */

.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.6);
  padding: 24px 0;
  text-align: center;
  font-size: 12px;
}

/* ===== POPRAWKI MOBILE (Task 16) ===== */

@media (max-width: 480px) {
  .hero__box { padding: 28px 20px; }
  .hero__title { font-size: 30px; line-height: 1.1; }
  .hero__date { font-size: 19px; }
  .hero__meta { font-size: 13px; }
  .hero__lead { font-size: 14px; }
  .btn--large { padding: 14px 28px; font-size: 11px; }
  .hero__brand { font-size: 14px; }
  .author__photo { max-width: 220px; margin: 0 auto; }
  .footer p { font-size: 11px; line-height: 1.5; padding: 0 8px; }
}

@media (max-width: 700px) {
  .cta-strip__inner { align-items: center; }
  .lodging__list a { font-size: 14px; }
}
