@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Manrope:wght@300;400;500;600;700;800&display=swap');

:root {
  --pgh-ivory: #f5f4f0;
  --pgh-paper: #fbfaf7;
  --pgh-white: #ffffff;
  --pgh-ink: #14161b;
  --pgh-graphite: #22262e;
  --pgh-slate: #525b68;
  --pgh-mute: #878d99;
  --pgh-line: #e3e0d8;
  --pgh-line-dark: rgba(255, 255, 255, 0.14);
  --pgh-accent: #8c1f2e;
  --pgh-accent-soft: #a83a48;
  --pgh-navy: #0e1626;
  --pgh-steel: #3b4a63;
  --pgh-silver: #c9ccd4;
  --pgh-font-display: 'Cormorant Garamond', 'Georgia', serif;
  --pgh-font-sans: 'Manrope', 'Segoe UI', sans-serif;
  --pgh-shadow: 0 24px 60px rgba(20, 22, 27, 0.10);
  --pgh-shadow-sm: 0 10px 30px rgba(20, 22, 27, 0.08);
  --pgh-radius: 4px;
  --pgh-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--pgh-font-sans);
  background-color: var(--pgh-ivory);
  color: var(--pgh-ink);
  overflow-x: hidden;
}

body.pgh-menu-open {
  overflow: hidden;
}

::selection {
  background: var(--pgh-accent);
  color: #fff;
}

/* ---------- Typography ---------- */

.pgh-display {
  font-family: var(--pgh-font-display);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.pgh-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--pgh-accent);
}

.pgh-eyebrow::before {
  content: '';
  width: 2.4rem;
  height: 1px;
  background: currentColor;
}

.pgh-eyebrow--center::after {
  content: '';
  width: 2.4rem;
  height: 1px;
  background: currentColor;
}

.pgh-eyebrow--light {
  color: var(--pgh-silver);
}

.pgh-lead {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--pgh-slate);
  font-weight: 400;
}

.pgh-serif-i {
  font-family: var(--pgh-font-display);
  font-style: italic;
  font-weight: 500;
}

.pgh-num {
  font-family: var(--pgh-font-display);
  font-variant-numeric: lining-nums;
}

/* ---------- Buttons ---------- */

.pgh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 1rem 2.1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.35s var(--pgh-ease);
  text-decoration: none;
  white-space: nowrap;
}

.pgh-btn i {
  font-size: 0.7rem;
  transition: transform 0.35s var(--pgh-ease);
}

.pgh-btn:hover i {
  transform: translateX(4px);
}

.pgh-btn--dark {
  background: var(--pgh-ink);
  color: #fff;
  border-color: var(--pgh-ink);
}

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

.pgh-btn--accent {
  background: var(--pgh-accent);
  color: #fff;
  border-color: var(--pgh-accent);
}

.pgh-btn--accent:hover {
  background: var(--pgh-ink);
  border-color: var(--pgh-ink);
}

.pgh-btn--outline {
  background: transparent;
  color: var(--pgh-ink);
  border-color: var(--pgh-ink);
}

.pgh-btn--outline:hover {
  background: var(--pgh-ink);
  color: #fff;
}

.pgh-btn--light {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(8px);
}

.pgh-btn--light:hover {
  background: #fff;
  color: var(--pgh-ink);
  border-color: #fff;
}

.pgh-btn--ghost {
  padding: 0.5rem 0;
  border: none;
  border-bottom: 1px solid var(--pgh-accent);
  border-radius: 0;
  color: var(--pgh-ink);
  letter-spacing: 0.18em;
}

.pgh-btn--ghost:hover {
  color: var(--pgh-accent);
}

.pgh-btn:disabled,
.pgh-btn.is-loading {
  opacity: 0.65;
  cursor: wait;
}

/* ---------- Sections & containers ---------- */

.pgh-section {
  position: relative;
  padding: clamp(4rem, 9vw, 8rem) 0;
}

.pgh-section--tight {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0;
}

.pgh-wrap {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.pgh-wrap--narrow {
  max-width: 960px;
}

.pgh-bg-media {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #f3f4f6;
}

.pgh-dark {
  background: var(--pgh-ink);
  color: #eef0f4;
}

.pgh-navy {
  background: var(--pgh-navy);
  color: #eef0f4;
}

.pgh-hairline-t {
  border-top: 1px solid var(--pgh-line);
}

.pgh-hairline-b {
  border-bottom: 1px solid var(--pgh-line);
}

.pgh-media-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--pgh-radius);
  background-size: cover;
  background-position: center;
}

.pgh-media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s var(--pgh-ease);
}

.pgh-media-frame:hover img {
  transform: scale(1.045);
}

.pgh-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid var(--pgh-line);
  border-radius: 999px;
  color: var(--pgh-slate);
  background: var(--pgh-white);
}

.pgh-badge--dark {
  border-color: var(--pgh-line-dark);
  background: rgba(255, 255, 255, 0.06);
  color: #dfe3ea;
}

.pgh-badge i {
  color: var(--pgh-accent);
}

.pgh-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1.1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  border: 1px solid var(--pgh-line);
  border-radius: 999px;
  color: var(--pgh-slate);
  background: var(--pgh-white);
  cursor: pointer;
  transition: all 0.3s var(--pgh-ease);
}

.pgh-chip:hover,
.pgh-chip.is-active {
  background: var(--pgh-ink);
  border-color: var(--pgh-ink);
  color: #fff;
}

/* ---------- Viewfinder corners ---------- */

.pgh-viewfinder {
  position: relative;
}

.pgh-viewfinder::before,
.pgh-viewfinder::after,
.pgh-viewfinder .pgh-vf-b::before,
.pgh-viewfinder .pgh-vf-b::after {
  content: '';
  position: absolute;
  width: 34px;
  height: 34px;
  border-color: rgba(255, 255, 255, 0.65);
  border-style: solid;
  pointer-events: none;
}

.pgh-viewfinder::before {
  top: 18px;
  left: 18px;
  border-width: 1px 0 0 1px;
}

.pgh-viewfinder::after {
  top: 18px;
  right: 18px;
  border-width: 1px 1px 0 0;
}

.pgh-viewfinder .pgh-vf-b::before {
  bottom: 18px;
  left: 18px;
  border-width: 0 0 1px 1px;
}

.pgh-viewfinder .pgh-vf-b::after {
  bottom: 18px;
  right: 18px;
  border-width: 0 1px 1px 0;
}

/* ---------- Header ---------- */

.pgh-topbar {
  background: var(--pgh-ink);
  color: #cfd4dc;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

.pgh-topbar a {
  color: inherit;
  text-decoration: none;
}

.pgh-topbar .pgh-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 38px;
}

.pgh-topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  white-space: nowrap;
}

.pgh-topbar-item i {
  color: var(--pgh-accent-soft);
  font-size: 0.62rem;
}

.pgh-topbar-social {
  display: flex;
  gap: 1rem;
}

.pgh-topbar-social a {
  opacity: 0.75;
  transition: opacity 0.3s;
}

.pgh-topbar-social a:hover {
  opacity: 1;
  color: #fff;
}

.pgh-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(251, 250, 247, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--pgh-line);
  transition: box-shadow 0.35s var(--pgh-ease);
}

.pgh-header.is-scrolled {
  box-shadow: 0 12px 40px rgba(20, 22, 27, 0.08);
}

.pgh-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 78px;
}

.pgh-logo {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
  flex-shrink: 0;
}

.pgh-logo img {
  width: 62px;
  height: auto;
  display: block;
}

.pgh-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.pgh-logo-text strong {
  font-family: var(--pgh-font-display);
  font-size: 1.28rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--pgh-ink);
  text-transform: uppercase;
}

.pgh-logo-text span {
  font-size: 0.58rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--pgh-accent);
  font-weight: 700;
}

.pgh-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 1.8vw, 1.7rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

.pgh-nav a {
  position: relative;
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pgh-graphite);
  text-decoration: none;
  padding: 0.4rem 0;
  transition: color 0.3s;
}

.pgh-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--pgh-accent);
  transition: width 0.35s var(--pgh-ease);
}

.pgh-nav a:hover {
  color: var(--pgh-accent);
}

.pgh-nav a:hover::after {
  width: 100%;
}

.pgh-header-actions {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  flex-shrink: 0;
}

.pgh-header-phone {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--pgh-ink);
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  white-space: nowrap;
}

.pgh-header-phone i {
  color: var(--pgh-accent);
}

.pgh-burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--pgh-line);
  border-radius: 2px;
  background: var(--pgh-white);
  color: var(--pgh-ink);
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
}

.pgh-burger:hover {
  background: var(--pgh-ink);
  color: #fff;
  border-color: var(--pgh-ink);
}

/* ---------- Mobile menu ---------- */

.pgh-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 950;
  background: var(--pgh-navy);
  color: #eef0f4;
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 6vw, 3rem);
  transform: translateX(100%);
  transition: transform 0.5s var(--pgh-ease);
  overflow-y: auto;
}

.pgh-mobile-menu.is-open {
  transform: translateX(0);
}

.pgh-mobile-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}

.pgh-mobile-close {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--pgh-line-dark);
  border-radius: 2px;
  background: transparent;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
}

.pgh-mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.pgh-mobile-nav a {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 0.85rem 0;
  font-family: var(--pgh-font-display);
  font-size: clamp(1.5rem, 6vw, 2.1rem);
  color: #f4f5f7;
  text-decoration: none;
  border-bottom: 1px solid var(--pgh-line-dark);
  transition: color 0.3s, padding-left 0.3s;
}

.pgh-mobile-nav a:hover {
  color: var(--pgh-accent-soft);
  padding-left: 0.6rem;
}

.pgh-mobile-nav a small {
  font-family: var(--pgh-font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  color: var(--pgh-mute);
  text-transform: uppercase;
}

.pgh-mobile-contacts {
  margin-top: auto;
  padding-top: 2.5rem;
  display: grid;
  gap: 0.7rem;
  font-size: 0.82rem;
  color: #b9bfc9;
}

.pgh-mobile-contacts div {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.pgh-mobile-contacts i {
  color: var(--pgh-accent-soft);
  width: 16px;
  text-align: center;
}

/* ---------- Hero / Slider ---------- */

.pgh-hero {
  position: relative;
  min-height: min(92vh, 900px);
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.pgh-slider {
  position: relative;
  width: 100%;
  background: linear-gradient(0deg, #0b0d16 0%, rgba(11, 13, 22, 0.8) 30%, rgba(11, 13, 22, 0.6) 50%, rgba(11, 13, 22, 0.2) 75%, rgba(11, 13, 22, 0.1) 100%), url(/images/poland-grand-hotel-warsaw-casino-0wc72t5hyv-qzxhxtruhm.webp);
}

.pgh-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s var(--pgh-ease), visibility 1s;
  color: #f5f6f8;
}

.pgh-slide.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
}

.pgh-slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(10, 12, 18, 0.25);
  backdrop-filter: blur(6px);
  color: #fff;
  cursor: pointer;
  transition: all 0.3s;
}

.pgh-slider-nav:hover {
  background: var(--pgh-accent);
  border-color: var(--pgh-accent);
}

.pgh-slider-prev {
  left: clamp(1rem, 3vw, 2.5rem);
}

.pgh-slider-next {
  right: clamp(1rem, 3vw, 2.5rem);
}

.pgh-slider-dots {
  position: absolute;
  bottom: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 0.6rem;
}

.pgh-slider-dots button {
  width: 34px;
  height: 3px;
  border: none;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: background 0.3s;
  padding: 0;
}

.pgh-slider-dots button.is-active {
  background: #fff;
}

.pgh-dock {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--pgh-radius);
}

.pgh-dock-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.1rem 1.4rem;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  min-width: 0;
}

.pgh-dock-field:last-child {
  border-right: none;
}

.pgh-dock-field label {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.pgh-dock-field span,
.pgh-dock-field select {
  font-family: var(--pgh-font-display);
  font-size: 1.15rem;
  color: #fff;
  background: transparent;
  border: none;
  outline: none;
}

.pgh-dock-field select option {
  color: var(--pgh-ink);
}

/* ---------- Cards & grids ---------- */

.pgh-card {
  background: var(--pgh-white);
  border: 1px solid var(--pgh-line);
  border-radius: var(--pgh-radius);
  padding: clamp(1.4rem, 3vw, 2.2rem);
  transition: transform 0.4s var(--pgh-ease), box-shadow 0.4s var(--pgh-ease), border-color 0.4s;
}

.pgh-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--pgh-shadow-sm);
  border-color: var(--pgh-silver);
}

.pgh-card--dark {
  background: var(--pgh-graphite);
  border-color: var(--pgh-line-dark);
  color: #eef0f4;
}

.pgh-card-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--pgh-line);
  border-radius: 50%;
  color: var(--pgh-accent);
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
  background: var(--pgh-paper);
}

.pgh-card--dark .pgh-card-icon {
  background: transparent;
  border-color: var(--pgh-line-dark);
  color: var(--pgh-accent-soft);
}

.pgh-tile-num {
  font-family: var(--pgh-font-display);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--pgh-mute);
}

/* ---------- Timeline ---------- */

.pgh-timeline {
  position: relative;
  padding-left: 2.2rem;
}

.pgh-timeline::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: var(--pgh-line);
}

.pgh-timeline-item {
  position: relative;
  padding-bottom: 2.2rem;
}

.pgh-timeline-item:last-child {
  padding-bottom: 0;
}

.pgh-timeline-item::before {
  content: '';
  position: absolute;
  left: -2.2rem;
  top: 6px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--pgh-paper);
  border: 2px solid var(--pgh-accent);
}

.pgh-timeline-year {
  font-family: var(--pgh-font-display);
  font-size: 1.6rem;
  color: var(--pgh-accent);
  line-height: 1;
}

/* ---------- FAQ ---------- */

.faq-item {
  border: 1px solid var(--pgh-line);
  border-radius: var(--pgh-radius);
  background: var(--pgh-white);
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.faq-item + .faq-item {
  margin-top: 0.8rem;
}

.faq-item.open {
  border-color: var(--pgh-silver);
  box-shadow: var(--pgh-shadow-sm);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.4rem;
  background: transparent;
  border: none;
  text-align: left;
  font-family: var(--pgh-font-sans);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--pgh-ink);
  cursor: pointer;
}

.faq-question i {
  color: var(--pgh-accent);
  font-size: 0.72rem;
  transition: transform 0.35s var(--pgh-ease);
  flex-shrink: 0;
}

.faq-item.open .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--pgh-ease);
}

.faq-answer > * {
  padding: 0 1.4rem 1.3rem;
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--pgh-slate);
}

.faq-answer ul {
  list-style: disc;
  padding-left: 2.6rem;
}

.faq-item--dark {
  background: var(--pgh-graphite);
  border-color: var(--pgh-line-dark);
}

.faq-item--dark .faq-question {
  color: #eef0f4;
}

.faq-item--dark .faq-answer > * {
  color: #b9bfc9;
}

/* ---------- Forms ---------- */

.pgh-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.pgh-field label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--pgh-slate);
}

.pgh-field input,
.pgh-field select,
.pgh-field textarea {
  width: 100%;
  padding: 0.95rem 1.1rem;
  font-family: var(--pgh-font-sans);
  font-size: 0.9rem;
  color: var(--pgh-ink);
  background: var(--pgh-white);
  border: 1px solid var(--pgh-line);
  border-radius: 2px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.pgh-field input:focus,
.pgh-field select:focus,
.pgh-field textarea:focus {
  border-color: var(--pgh-accent);
  box-shadow: 0 0 0 3px rgba(140, 31, 46, 0.08);
}

.pgh-field.has-error input,
.pgh-field.has-error select,
.pgh-field.has-error textarea {
  border-color: var(--pgh-accent);
  background: #fdf6f6;
}

.pgh-field-error {
  font-size: 0.72rem;
  color: var(--pgh-accent);
  display: none;
}

.pgh-field.has-error .pgh-field-error {
  display: block;
}

.pgh-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.pgh-check {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.78rem;
  line-height: 1.6;
  color: var(--pgh-slate);
  cursor: pointer;
}

.pgh-check input {
  margin-top: 0.2rem;
  accent-color: var(--pgh-accent);
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.pgh-check a {
  color: var(--pgh-accent);
  text-decoration: underline;
}

.pgh-spinner {
  display: none;
  width: 15px;
  height: 15px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: pgh-spin 0.7s linear infinite;
}

.is-loading .pgh-spinner {
  display: inline-block;
}

.is-loading .pgh-btn-label {
  opacity: 0.75;
}

@keyframes pgh-spin {
  to {
    transform: rotate(360deg);
  }
}

/* ---------- Toast ---------- */

.pgh-toast {
  position: fixed;
  bottom: 1.6rem;
  left: 50%;
  transform: translate(-50%, 140%);
  z-index: 990;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.95rem 1.5rem;
  background: var(--pgh-ink);
  color: #fff;
  border-radius: 3px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  box-shadow: var(--pgh-shadow);
  transition: transform 0.5s var(--pgh-ease);
  max-width: min(92vw, 480px);
}

.pgh-toast.show {
  transform: translate(-50%, 0);
}

.pgh-toast i {
  color: #7fd4a0;
}

/* ---------- Cookie banner ---------- */

#cookie-banner {
  position: fixed;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999999;
  display: none;
  width: min(94vw, 720px);
  background: var(--pgh-ink);
  color: #e8eaee;
  padding: 1.4rem 1.6rem;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 80px rgba(10, 12, 16, 0.45);
  align-items: center;
  gap: 1.4rem;
}

#cookie-banner.show {
  display: flex;
}

#cookie-banner .cookie-text {
  flex: 1;
  min-width: 240px;
}

#cookie-banner .cookie-text strong {
  display: block;
  font-family: var(--pgh-font-display);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.3rem;
  color: #fff;
}

#cookie-banner .cookie-text p {
  margin: 0;
  font-size: 0.74rem;
  line-height: 1.6;
  color: #a9afba;
}

#cookie-banner .cookie-actions {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
}

#cookie-banner .cookie-btn {
  padding: 0.65rem 1.3rem;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s;
}

#cookie-banner .cookie-btn--decline {
  background: transparent;
  color: #c6cad2;
  border-color: rgba(255, 255, 255, 0.25);
}

#cookie-banner .cookie-btn--decline:hover {
  border-color: #fff;
  color: #fff;
}

#cookie-banner .cookie-btn--accept {
  background: var(--pgh-accent);
  color: #fff;
  border-color: var(--pgh-accent);
}

#cookie-banner .cookie-btn--accept:hover {
  background: #fff;
  color: var(--pgh-ink);
  border-color: #fff;
}

/* ---------- Marquee ---------- */

.pgh-marquee {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.pgh-marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 3.5rem;
  padding-right: 3.5rem;
  animation: pgh-marquee 32s linear infinite;
}

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

/* ---------- Tables ---------- */

.pgh-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.pgh-table th {
  text-align: left;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pgh-mute);
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--pgh-line);
}

.pgh-table td {
  padding: 1.05rem 1rem;
  border-bottom: 1px solid var(--pgh-line);
  vertical-align: top;
  color: var(--pgh-graphite);
}

.pgh-table tr:last-child td {
  border-bottom: none;
}

.pgh-table .pgh-price-cell {
  font-family: var(--pgh-font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--pgh-ink);
  white-space: nowrap;
}

/* ---------- Misc ---------- */

.pgh-divider-label {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--pgh-mute);
}

.pgh-divider-label::before,
.pgh-divider-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--pgh-line);
}

.pgh-icon-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.pgh-icon-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--pgh-slate);
}

.pgh-icon-list i {
  color: var(--pgh-accent);
  margin-top: 0.28rem;
  font-size: 0.72rem;
  flex-shrink: 0;
}

.pgh-dark .pgh-icon-list li,
.pgh-navy .pgh-icon-list li,
.pgh-bg-media .pgh-icon-list li {
  color: #c3c8d1;
}

.pgh-dark .pgh-icon-list i,
.pgh-navy .pgh-icon-list i,
.pgh-bg-media .pgh-icon-list i {
  color: var(--pgh-accent-soft);
}

.pgh-dark .pgh-lead,
.pgh-navy .pgh-lead,
.pgh-bg-media .pgh-lead {
  color: #b9bfc9;
}

.pgh-stat {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.pgh-stat strong {
  font-family: var(--pgh-font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 500;
  line-height: 1;
  color: var(--pgh-ink);
}

.pgh-dark .pgh-stat strong,
.pgh-navy .pgh-stat strong,
.pgh-bg-media .pgh-stat strong {
  color: #fff;
}

.pgh-stat span {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--pgh-mute);
}

.pgh-quote {
  font-family: var(--pgh-font-display);
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  font-style: italic;
  line-height: 1.4;
}

.pgh-link-inline {
  color: var(--pgh-accent);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(140, 31, 46, 0.3);
  transition: border-color 0.3s, color 0.3s;
}

.pgh-link-inline:hover {
  color: var(--pgh-ink);
  border-color: var(--pgh-ink);
}

.pgh-dark .pgh-link-inline,
.pgh-bg-media .pgh-link-inline {
  color: #e8b7be;
  border-color: rgba(255, 255, 255, 0.35);
}

.pgh-dark .pgh-link-inline:hover,
.pgh-bg-media .pgh-link-inline:hover {
  color: #fff;
  border-color: #fff;
}

/* ---------- Footer ---------- */

.pgh-footer {
  background: var(--pgh-ink);
  color: #aeb4bf;
  font-size: 0.82rem;
}

.pgh-footer a {
  color: #c8cdd6;
  text-decoration: none;
  transition: color 0.3s;
}

.pgh-footer a:hover {
  color: #fff;
}

.pgh-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding: clamp(3rem, 6vw, 5rem) 0 3rem;
}

.pgh-footer h4 {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 1.3rem;
}

.pgh-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.pgh-footer-brand img {
  width: 74px;
  margin-bottom: 1.2rem;
}

.pgh-footer-brand p {
  line-height: 1.8;
  margin: 0 0 1.4rem;
  max-width: 34ch;
}

.pgh-footer-social {
  display: flex;
  gap: 0.7rem;
}

.pgh-footer-social a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--pgh-line-dark);
  border-radius: 50%;
  font-size: 0.8rem;
  color: #c8cdd6;
  transition: all 0.3s;
}

.pgh-footer-social a:hover {
  background: var(--pgh-accent);
  border-color: var(--pgh-accent);
  color: #fff;
}

.pgh-footer-contact div {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  line-height: 1.6;
}

.pgh-footer-contact i {
  color: var(--pgh-accent-soft);
  margin-top: 0.25rem;
  font-size: 0.75rem;
  width: 15px;
  text-align: center;
}

.pgh-footer-legal {
  border-top: 1px solid var(--pgh-line-dark);
  padding: 1.6rem 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.72rem;
  color: #7d838f;
}

.pgh-footer-legal nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
}

.pgh-footer-meta {
  border-top: 1px solid var(--pgh-line-dark);
  padding: 1.4rem 0 2rem;
  font-size: 0.68rem;
  line-height: 1.9;
  color: #6d7480;
}

/* ---------- Utilities ---------- */

.pgh-prose p {
  margin: 0 0 1.1rem;
  line-height: 1.85;
  color: var(--pgh-slate);
  font-size: 0.92rem;
}

.pgh-dark .pgh-prose p,
.pgh-navy .pgh-prose p,
.pgh-bg-media .pgh-prose p {
  color: #b9bfc9;
}

.pgh-prose h3 {
  font-family: var(--pgh-font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 2rem 0 0.9rem;
  color: inherit;
}

.pgh-prose ul {
  margin: 0 0 1.1rem;
  padding-left: 1.2rem;
  color: var(--pgh-slate);
  font-size: 0.92rem;
  line-height: 1.8;
}

.pgh-dark .pgh-prose ul,
.pgh-bg-media .pgh-prose ul {
  color: #b9bfc9;
}

.pgh-tab-btn {
  padding: 0.7rem 1.4rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid var(--pgh-line);
  border-radius: 999px;
  background: var(--pgh-white);
  color: var(--pgh-slate);
  cursor: pointer;
  transition: all 0.3s;
}

.pgh-tab-btn.is-active {
  background: var(--pgh-ink);
  color: #fff;
  border-color: var(--pgh-ink);
}

.pgh-panel {
  display: none;
}

.pgh-panel.is-active {
  display: block;
  animation: pgh-fade 0.5s var(--pgh-ease);
}

@keyframes pgh-fade {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ---------- Responsive ---------- */

@media (max-width: 1180px) {
  .pgh-nav ul {
    gap: 0.9rem;
  }

  .pgh-nav a {
    font-size: 0.64rem;
    letter-spacing: 0.1em;
  }

  .pgh-header-phone {
    display: none;
  }
}

@media (max-width: 960px) {
  .pgh-nav {
    display: none;
  }

  .pgh-burger {
    display: inline-flex;
  }

  .pgh-header-inner {
    min-height: 66px;
  }

  .pgh-logo img {
    width: 48px;
  }

  .pgh-logo-text strong {
    font-size: 1.05rem;
  }

  .pgh-header-actions .pgh-btn {
    display: none;
  }

  .pgh-footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pgh-dock {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .pgh-dock-field {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }
}

@media (max-width: 640px) {
  .pgh-topbar .pgh-topbar-item--address {
    display: none;
  }

  .pgh-footer-grid {
    grid-template-columns: 1fr;
  }

  .pgh-slider-nav {
    width: 42px;
    height: 42px;
  }

  .pgh-slider-dots {
    bottom: 1rem;
  }

  .pgh-dock {
    grid-template-columns: 1fr;
  }

  #cookie-banner {
    flex-direction: column;
    align-items: stretch;
    padding: 1.2rem;
  }

  #cookie-banner .cookie-actions {
    justify-content: stretch;
  }

  #cookie-banner .cookie-btn {
    flex: 1;
  }

  .pgh-table thead {
    display: none;
  }

  .pgh-table,
  .pgh-table tbody,
  .pgh-table tr,
  .pgh-table td {
    display: block;
    width: 100%;
  }

  .pgh-table tr {
    border: 1px solid var(--pgh-line);
    border-radius: var(--pgh-radius);
    margin-bottom: 1rem;
    padding: 0.6rem 0;
    background: var(--pgh-white);
  }

  .pgh-table td {
    border-bottom: none;
    padding: 0.5rem 1.1rem;
  }

  .pgh-table td::before {
    content: attr(data-label);
    display: block;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--pgh-mute);
    margin-bottom: 0.15rem;
  }
}

.pgh-badge--accent {
  border-color: var(--pgh-accent);
  background: var(--pgh-accent);
  color: var(--pgh-white);
}

.pgh-badge--accent i {
  color: var(--pgh-white);
}

.pgh-price-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--pgh-line);
  font-size: 0.92rem;
}

.pgh-price-line span {
  color: var(--pgh-slate);
}

.pgh-price-line strong {
  white-space: nowrap;
  color: var(--pgh-ink);
}

.pgh-table--dark th {
  color: rgba(255, 255, 255, 0.45);
  border-bottom-color: var(--pgh-line-dark);
}

.pgh-table--dark td {
  color: rgba(255, 255, 255, 0.78);
  border-bottom-color: var(--pgh-line-dark);
}

.pgh-table--dark tr:last-child td {
  border-bottom: none;
}
@media (max-width: 768px) {
  html,body{overflow-x: hidden;}
}
