/* =========================================================
   Palazzo Ambra — Main Stylesheet
   ========================================================= */

:root {
  --pa-gold: #C9A86A;
  --pa-gold-dark: #B8976A;
  --pa-ink: #1A1A1A;
  --pa-cream: #F8F7F4;
  --pa-text: #4A4A4A;
  --pa-muted: #6B7280;
  --pa-white: #ffffff;
  --pa-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 300;
  color: var(--pa-ink);
  background: var(--pa-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; transition: color .3s ease; }
a:hover { color: var(--pa-gold); }

button { font-family: inherit; cursor: pointer; }

/* =========================================================
   Buttons
   ========================================================= */
.pa-btn {
  display: inline-block;
  padding: 16px 40px;
  background: var(--pa-gold);
  color: #fff;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  transition: all .3s ease;
}
.pa-btn:hover {
  background: var(--pa-gold-dark);
  color: #fff;
  transform: scale(1.05);
}
.pa-btn--sm { padding: 10px 24px; font-size: 12px; }
.pa-btn--outline {
  background: #fff;
  color: #000;
}
.pa-btn--outline:hover { background: var(--pa-gold); color: #fff; }

/* =========================================================
   Navbar
   ========================================================= */
.pa-navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: transparent;
  transition: background .4s ease, box-shadow .4s ease;
}
.pa-navbar.is-scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
.pa-navbar__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pa-navbar__logo img {
  height: 90px;
  object-fit: contain;
}
.pa-navbar__logo-color { display: none; }
.pa-navbar.is-scrolled .pa-navbar__logo-light { display: none; }
.pa-navbar.is-scrolled .pa-navbar__logo-color { display: block; }

.pa-nav-menu {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.pa-nav-menu a, .pa-nav-menu button {
  background: none;
  border: none;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  transition: color .3s ease;
  padding: 0;
}
.pa-navbar.is-scrolled .pa-nav-menu a,
.pa-navbar.is-scrolled .pa-nav-menu button { color: #000; }
.pa-nav-menu a:hover, .pa-nav-menu button:hover { color: var(--pa-gold); }

/* "Prenota" rendered as a solid gold button, like the hero "Scopri le Camere"
   CTA. Scoped under the menus so it beats the generic `.pa-nav-menu a` reset
   (which would otherwise strip its background and padding). */
.pa-nav-menu .pa-nav-book,
.pa-mobile-menu .pa-nav-book {
  display: inline-block;
  padding: 13px 30px;
  background: var(--pa-gold);
  color: #fff !important;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 300;
  border: none;
  transition: all .3s ease;
}
.pa-nav-menu .pa-nav-book:hover,
.pa-mobile-menu .pa-nav-book:hover {
  background: var(--pa-gold-dark);
  color: #fff !important;
  transform: scale(1.05);
}

.pa-mobile-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  color: #fff;
}
.pa-navbar.is-scrolled .pa-mobile-toggle { color: #000; }

.pa-mobile-toggle svg { width: 28px; height: 28px; }

.pa-mobile-menu {
  display: none;
  background: #fff;
  border-top: 1px solid #eee;
  padding: 24px;
}
.pa-mobile-menu.is-open { display: block; }
.pa-mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pa-mobile-menu a, .pa-mobile-menu button {
  background: none;
  border: none;
  display: block;
  width: 100%;
  text-align: left;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #000;
  padding: 0;
}
.pa-mobile-menu .pa-nav-book {
  display: block;
  text-align: center;
  width: 100%;
}

@media (max-width: 1024px) {
  .pa-nav-menu { display: none; }
  .pa-mobile-toggle { display: block; }
  .pa-navbar__inner { padding: 0 24px; height: 80px; }
  .pa-navbar__logo img { height: 70px; }
}

/* Language switcher */
.pa-lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.pa-lang-switch__link {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.55;
  transition: opacity .3s ease, color .3s ease;
}
.pa-lang-switch__link:hover,
.pa-lang-switch__link.is-active {
  opacity: 1;
  color: var(--pa-gold) !important;
}
.pa-lang-switch__link.is-active { font-weight: 600; }
.pa-lang-switch__sep { opacity: 0.4; }
/* Separator follows the navbar text color in each state */
.pa-nav-menu .pa-lang-switch__sep { color: #fff; }
.pa-navbar.is-scrolled .pa-nav-menu .pa-lang-switch__sep { color: #000; }

.pa-lang-switch--mobile {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid #eee;
  gap: 12px;
}
.pa-lang-switch--mobile .pa-lang-switch__link { font-size: 16px; }
.pa-lang-switch--mobile .pa-lang-switch__sep { color: #000; }

/* =========================================================
   Hero
   ========================================================= */
.pa-hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}
.pa-hero__image {
  position: absolute;
  inset: 0;
}
.pa-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pa-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
.pa-hero__content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 0 24px;
}
.pa-hero__title {
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 300;
  letter-spacing: 0.04em;
  margin: 0 0 24px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
  opacity: 0;
  animation: pa-fadeInUp 1s ease-out 0.3s forwards;
}
.pa-hero__divider {
  width: 96px;
  height: 1px;
  background: var(--pa-gold);
  margin: 0 auto 24px;
  opacity: 0;
  animation: pa-fadeIn 1s ease-out 0.6s forwards;
}
.pa-hero__subtitle {
  font-size: clamp(16px, 1.5vw, 22px);
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0 0 32px;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.8);
  opacity: 0;
  animation: pa-fadeInUp 1s ease-out 0.9s forwards;
}
.pa-hero__desc {
  font-size: clamp(14px, 1.1vw, 18px);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.7;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
  opacity: 0;
  animation: pa-fadeInUp 1s ease-out 1.2s forwards;
}
.pa-hero__cta {
  opacity: 0;
  animation: pa-fadeInUp 1s ease-out 1.5s forwards;
}

@keyframes pa-fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pa-fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* =========================================================
   Sections common
   ========================================================= */
.pa-section { padding: 96px 0; }
@media (min-width: 1024px) { .pa-section { padding: 128px 0; } }

.pa-section--cream { background: var(--pa-cream); }
.pa-section--white { background: var(--pa-white); }

.pa-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}
@media (max-width: 768px) { .pa-container { padding: 0 24px; } }

.pa-section__head {
  text-align: center;
  margin-bottom: 64px;
}
.pa-eyebrow {
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pa-gold);
  font-weight: 300;
  margin: 0 0 16px;
}
.pa-section__title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  color: var(--pa-ink);
  margin: 0 0 24px;
  line-height: 1.2;
}
.pa-section__divider {
  width: 96px;
  height: 1px;
  background: var(--pa-gold);
  margin: 0 auto 24px;
}
.pa-section__lead {
  font-size: clamp(15px, 1.2vw, 18px);
  color: var(--pa-text);
  font-weight: 300;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* =========================================================
   Welcome
   ========================================================= */
.pa-welcome { text-align: center; }
.pa-welcome__title {
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 300;
  color: var(--pa-ink);
  line-height: 1.2;
  margin: 24px 0 40px;
}
.pa-welcome__divider {
  width: 96px;
  height: 1px;
  background: var(--pa-gold);
  margin: 0 auto 40px;
}
.pa-welcome__text {
  font-size: clamp(15px, 1.2vw, 18px);
  color: var(--pa-text);
  font-weight: 300;
  line-height: 1.8;
  max-width: 768px;
  margin: 0 auto 24px;
}

/* =========================================================
   Rooms grid
   ========================================================= */
.pa-rooms__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 1024px) { .pa-rooms__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .pa-rooms__grid { grid-template-columns: 1fr; } }

.pa-room-card { cursor: pointer; }
.pa-room-card__image {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  margin-bottom: 24px;
}
.pa-room-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}
.pa-room-card:hover .pa-room-card__image img { transform: scale(1.1); }

.pa-room-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.4), transparent);
  opacity: 0;
  transition: opacity .5s ease;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  color: #fff;
}
.pa-room-card:hover .pa-room-card__overlay { opacity: 1; }

.pa-room-card__meta {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  font-size: 13px;
}
.pa-room-card__meta span { display: inline-flex; align-items: center; gap: 6px; }

.pa-room-card__name {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 300;
  color: var(--pa-ink);
  margin: 0 0 12px;
  transition: color .3s ease;
}
.pa-room-card:hover .pa-room-card__name { color: var(--pa-gold); }

.pa-room-card__desc {
  color: var(--pa-muted);
  font-weight: 300;
  line-height: 1.6;
  margin: 0;
}

.pa-rooms__cta {
  text-align: center;
  margin-top: 64px;
}

/* =========================================================
   Single room (camera detail)
   ========================================================= */
.pa-room {
  padding-top: 120px;
  background: #fff;
}
.pa-room__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--pa-gold);
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.pa-room__hero {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin-bottom: 40px;
}
.pa-room__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pa-room__title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  margin: 0 0 24px;
}
.pa-room__divider {
  width: 96px;
  height: 1px;
  background: var(--pa-gold);
  margin-bottom: 32px;
}
.pa-room__desc {
  font-size: 17px;
  color: var(--pa-text);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 48px;
  max-width: 800px;
}
.pa-room__layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
@media (max-width: 768px) { .pa-room__layout { grid-template-columns: 1fr; } }

.pa-room__amenities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 32px;
  padding: 0;
  list-style: none;
}
@media (max-width: 640px) { .pa-room__amenities { grid-template-columns: 1fr; } }
.pa-room__amenities li {
  padding-left: 24px;
  position: relative;
  color: var(--pa-text);
  font-weight: 300;
}
.pa-room__amenities li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 12px;
  height: 1px;
  background: var(--pa-gold);
}
.pa-room__facts {
  background: var(--pa-cream);
  padding: 32px;
}
.pa-room__facts h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  margin: 0 0 24px;
}
.pa-room__facts dl {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px 16px;
  margin: 0;
}
.pa-room__facts dt {
  font-weight: 400;
  color: var(--pa-text);
}
.pa-room__facts dd {
  margin: 0;
  color: var(--pa-ink);
}

.pa-room__amenities-title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 300;
  margin: 0 0 24px;
}
.pa-room__cta { text-align: center; margin: 64px 0; }

.pa-room__gallery { margin-bottom: 64px; }
.pa-room__gallery-title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 300;
  margin: 0 0 24px;
}
.pa-room__gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.pa-room__gallery-item {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.pa-room__gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.pa-room__gallery-item:hover img { transform: scale(1.05); }
@media (max-width: 768px) {
  .pa-room__gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =========================================================
   Services
   ========================================================= */
.pa-services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}
@media (max-width: 768px) { .pa-services__grid { grid-template-columns: 1fr; gap: 32px; } }

.pa-service-card { text-align: center; transition: transform .5s ease; }
.pa-service-card:hover { transform: scale(1.04); }
.pa-service-card__image {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  margin-bottom: 24px;
}
.pa-service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}
.pa-service-card:hover .pa-service-card__image img { transform: scale(1.1); }
.pa-service-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}
.pa-service-card__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 34px;
  transition: all .5s ease;
  z-index: 2;
}
.pa-service-card:hover .pa-service-card__icon {
  background: var(--pa-gold);
  transform: translate(-50%, -50%) scale(1.1);
}
.pa-service-card__title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 300;
  margin: 0 0 16px;
  color: var(--pa-ink);
  transition: color .3s ease;
}
.pa-service-card:hover .pa-service-card__title { color: var(--pa-gold); }
.pa-service-card__desc {
  color: var(--pa-muted);
  font-weight: 300;
  line-height: 1.6;
  margin: 0;
}
.pa-service-card__image--coming-soon::after { content: none; }
.pa-service-card__image--coming-soon img { opacity: 0.35; }
.pa-coming-soon {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: linear-gradient(160deg, rgba(42, 42, 42, 0.55), rgba(26, 26, 26, 0.65));
  border: 1px solid rgba(201, 168, 106, 0.35);
}
.pa-coming-soon i {
  font-size: 40px;
  color: var(--pa-gold);
}
.pa-coming-soon__divider {
  width: 64px;
  height: 1px;
  background: var(--pa-gold);
}
.pa-coming-soon__text {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: #fff;
}

/* =========================================================
   Location
   ========================================================= */
.pa-location__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 1024px) {
  .pa-location__grid { grid-template-columns: 1fr; gap: 48px; }
}
.pa-location__image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.pa-location__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pa-location__title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.2;
  margin: 24px 0 32px;
}
.pa-location__divider {
  width: 96px;
  height: 1px;
  background: var(--pa-gold);
  margin-bottom: 40px;
}
.pa-location__text {
  font-size: clamp(15px, 1.2vw, 18px);
  color: var(--pa-text);
  font-weight: 300;
  line-height: 1.8;
  margin: 0 0 24px;
}

/* =========================================================
   Contact
   ========================================================= */
.pa-contact__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}
@media (max-width: 768px) { .pa-contact__grid { grid-template-columns: 1fr; } }
.pa-contact__item { text-align: center; }
.pa-contact__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--pa-cream);
  color: var(--pa-gold);
  margin-bottom: 16px;
  font-size: 26px;
}
.pa-contact__label {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 300;
  margin: 0 0 12px;
}
.pa-contact__value {
  color: var(--pa-text);
  font-weight: 300;
  line-height: 1.6;
}
.pa-contact__value a { color: inherit; }
.pa-contact__value a:hover { color: var(--pa-gold); }

.pa-contact__map-section {
  margin-top: 72px;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
.pa-contact__map {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 6px;
  background: var(--pa-cream);
  border: 1px solid rgba(201, 168, 106, 0.25);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.10);
}
.pa-contact__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: saturate(0.85) contrast(1.02);
}
.pa-contact__distances {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 36px;
}
.pa-contact__distance {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px 32px;
  background: var(--pa-white);
  border: 1px solid rgba(201, 168, 106, 0.22);
  border-radius: 6px;
  min-width: 248px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.pa-contact__distance:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.10);
  border-color: var(--pa-gold);
}
.pa-contact__distance-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--pa-cream);
  color: var(--pa-gold);
  font-size: 22px;
  flex-shrink: 0;
  transition: background .35s ease, color .35s ease;
}
.pa-contact__distance:hover .pa-contact__distance-icon {
  background: var(--pa-gold);
  color: var(--pa-white);
}
.pa-contact__distance-label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 6px;
  color: var(--pa-muted);
}
.pa-contact__distance-value {
  margin: 0;
  font-family: var(--serif);
  color: var(--pa-ink);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.1;
}
.pa-contact__map-link {
  text-align: center;
  margin: 32px 0 0;
}
.pa-contact__map-link a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 30px;
  border: 1px solid var(--pa-gold);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pa-gold);
  font-weight: 400;
  transition: background .35s ease, color .35s ease;
}
.pa-contact__map-link a:hover { background: var(--pa-gold); color: var(--pa-white); }
.pa-contact__map-link i { font-size: 11px; }

/* =========================================================
   Footer
   ========================================================= */
.pa-footer {
  background: var(--pa-ink);
  color: #fff;
}
.pa-footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 48px;
}
@media (max-width: 768px) { .pa-footer__inner { padding: 56px 24px; } }
.pa-footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
@media (max-width: 768px) { .pa-footer__grid { grid-template-columns: 1fr; gap: 32px; } }
.pa-footer__logo {
  height: 64px;
  margin-bottom: 24px;
}
.pa-footer__desc {
  color: #9CA3AF;
  font-weight: 300;
  line-height: 1.7;
  max-width: 420px;
  margin: 0;
}
.pa-footer__social {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}
.pa-social-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 8px 22px 8px 8px;
  border: 1px solid #3A3A3A;
  border-radius: 999px;
  color: #9CA3AF;
  transition: color .35s ease, border-color .35s ease, transform .35s ease, background .35s ease;
}
.pa-social-link__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(201, 168, 106, 0.12);
  color: var(--pa-gold);
  font-size: 20px;
  flex-shrink: 0;
  transition: background .35s ease, color .35s ease;
}
.pa-social-link__text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.pa-social-link__label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6B7280;
  transition: color .35s ease;
}
.pa-social-link__handle {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 400;
  color: #E5E5E5;
  transition: color .35s ease;
}
.pa-social-link:hover {
  border-color: var(--pa-gold);
  transform: translateY(-2px);
}
.pa-social-link:hover .pa-social-link__icon {
  background: var(--pa-gold);
  color: var(--pa-ink);
}
.pa-social-link:hover .pa-social-link__label { color: var(--pa-gold); }
.pa-social-link:hover .pa-social-link__handle { color: #fff; }
.pa-footer__title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 300;
  margin: 0 0 24px;
}
.pa-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pa-footer__links a {
  color: #9CA3AF;
  font-weight: 300;
  transition: color .3s ease;
}
.pa-footer__links a:hover { color: var(--pa-gold); }

.pa-footer__bottom {
  border-top: 1px solid #2A2A2A;
}
.pa-footer__bottom-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
@media (max-width: 768px) { .pa-footer__bottom-inner { padding: 24px; flex-direction: column; text-align: center; } }
.pa-footer__copy {
  color: #6B7280;
  font-size: 13px;
  font-weight: 300;
  margin: 0;
}
.pa-footer__legal {
  display: flex;
  gap: 24px;
}
.pa-footer__legal a {
  color: #6B7280;
  font-size: 13px;
  font-weight: 300;
}
.pa-footer__legal a:hover { color: var(--pa-gold); }
/* Cookie-preferences control (Complianz button or fallback link) styled to
   match the other footer legal links. */
.pa-footer__legal .cmplz-manage-consent,
.pa-footer__legal .pa-cookie-prefs {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  color: #6B7280;
  font-family: inherit;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: normal;
  text-transform: none;
  text-decoration: none;
  transition: color .3s ease;
}
.pa-footer__legal .cmplz-manage-consent:hover,
.pa-footer__legal .pa-cookie-prefs:hover { color: var(--pa-gold); }

/* =========================================================
   Generic page
   ========================================================= */
.pa-page {
  padding: 160px 0 96px;
  min-height: 60vh;
}
.pa-page__title {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 300;
  margin: 0 0 32px;
}
.pa-page__content { font-size: 16px; line-height: 1.8; color: var(--pa-text); }
.pa-page__content p { margin: 0 0 16px; }

/* =========================================================
   404
   ========================================================= */
.pa-404 {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 160px 24px 96px;
}
.pa-404 h1 {
  font-family: var(--serif);
  font-size: clamp(56px, 8vw, 96px);
  font-weight: 300;
  margin: 0 0 16px;
  color: var(--pa-gold);
}

/* =========================================================
   Legal pages (Privacy / Cookie)
   ========================================================= */
.pa-navbar--solid { background: rgba(255, 255, 255, 0.95); }

.pa-legal {
  background: var(--pa-white);
  padding: 152px 0 96px;
}
@media (max-width: 1024px) { .pa-legal { padding: 128px 0 72px; } }
.pa-legal__container { max-width: 820px; }
.pa-legal__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pa-muted);
  margin-bottom: 40px;
  transition: color .3s ease;
}
.pa-legal__back:hover { color: var(--pa-gold); }
.pa-legal__title {
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 300;
  letter-spacing: 0.02em;
  margin: 0 0 24px;
  color: var(--pa-ink);
}
.pa-legal__divider {
  width: 80px;
  height: 1px;
  background: var(--pa-gold);
  margin-bottom: 28px;
}
.pa-legal__intro {
  font-size: 17px;
  line-height: 1.7;
  font-weight: 300;
  color: var(--pa-text);
  margin: 0 0 8px;
}
.pa-legal__updated {
  font-size: 13px;
  color: var(--pa-muted);
  margin: 0 0 48px;
}
.pa-legal__section { margin-bottom: 40px; }
.pa-legal__heading {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 300;
  color: var(--pa-ink);
  margin: 0 0 16px;
}
.pa-legal__p {
  font-size: 16px;
  line-height: 1.8;
  font-weight: 300;
  color: var(--pa-text);
  margin: 0 0 16px;
}
.pa-legal__list {
  margin: 0 0 16px;
  padding-left: 22px;
  color: var(--pa-text);
}
.pa-legal__list li {
  font-size: 16px;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 10px;
}
.pa-legal a {
  color: var(--pa-gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.pa-legal a:hover { color: var(--pa-gold-dark); }
.pa-legal__table-wrap { overflow-x: auto; margin: 0 0 16px; }
.pa-legal__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  font-weight: 300;
  color: var(--pa-text);
}
.pa-legal__table th,
.pa-legal__table td {
  text-align: left;
  padding: 12px 16px;
  border: 1px solid #E5E1D8;
  vertical-align: top;
}
.pa-legal__table th {
  background: var(--pa-cream);
  font-weight: 500;
  color: var(--pa-ink);
  letter-spacing: 0.03em;
}
