/* PlayaCR Brand Styles - loads after Kadence */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700&family=DM+Sans:ital,wght@0,400;0,500;0,600;1,400&display=swap');

/* ---- GLOBAL ---- */
body {
  font-family: 'DM Sans', sans-serif !important;
  color: #1A2332 !important;
  background-color: #F7F5F0 !important;
  -webkit-font-smoothing: antialiased;
}

html { scroll-behavior: smooth; }
::selection { background: #0E7C7B; color: #fff; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5, h6,
.wp-block-heading,
.entry-title,
.kadence-title .entry-title,
.site-title {
  font-family: 'Outfit', sans-serif !important;
  color: #1A2332 !important;
  letter-spacing: -0.02em;
  line-height: 1.2;
  font-weight: 700;
}

h1, .entry-title { font-size: clamp(2.4rem, 5vw, 3.5rem) !important; }

h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem) !important;
  font-weight: 600;
  margin-top: 2.5em;
  padding-top: 1.2em;
  border-top: 2px solid rgba(14,124,123,0.1);
}

h3, h3.wp-block-heading {
  font-size: clamp(1.15rem, 2.5vw, 1.4rem) !important;
  color: #0E7C7B !important;
  font-weight: 600;
}

p, li {
  font-size: 1.05rem;
  line-height: 1.75;
}

/* ---- HEADER ---- */
.site-header,
.site-header-wrap,
header.site-header,
.site-header-inner-wrap,
.site-main-header-wrap,
#masthead,
.header-desktop-layout-standard .site-header-wrap {
  background: #1A2332 !important;
  background-color: #1A2332 !important;
  box-shadow: 0 4px 30px rgba(0,0,0,0.2);
}

header.site-header { position: relative; }

header.site-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0E7C7B, #D4A853, #E06D44);
  z-index: 10;
}

/* Site title */
.site-branding .site-title,
.site-branding .site-title a,
.site-title a,
.kadence-site-title a {
  color: #fff !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: 1.6rem !important;
  font-weight: 700 !important;
  text-decoration: none !important;
}

.site-branding .site-description {
  color: #6B7D8D !important;
  font-size: 0.8rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
}

/* Navigation */
.header-menu-container .menu > .menu-item > a,
.header-navigation .menu > .menu-item > a,
.primary-menu-container .menu > .menu-item > a,
nav.navigation .menu > .menu-item > a,
.kadence-navigation .navigation .menu > .menu-item > a {
  color: rgba(255,255,255,0.85) !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 0.85rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  transition: color 0.3s ease;
}

.header-menu-container .menu > .menu-item > a:hover,
.header-navigation .menu > .menu-item > a:hover,
.primary-menu-container .menu > .menu-item > a:hover,
nav .menu > .menu-item > a:hover,
.kadence-navigation .navigation .menu > .menu-item > a:hover {
  color: #D4A853 !important;
}

.kadence-navigation .navigation .menu > .current-menu-item > a {
  color: #D4A853 !important;
}

/* Mobile menu toggle */
.menu-toggle-open, .menu-toggle-icon {
  color: #fff !important;
}

/* ---- BUTTONS ---- */
.wp-block-button__link,
.wp-element-button,
button[type="submit"],
.wp-block-button .wp-block-button__link {
  background: #E06D44 !important;
  background-color: #E06D44 !important;
  color: #fff !important;
  border: none !important;
  border-radius: 6px !important;
  padding: 14px 36px !important;
  font-family: 'DM Sans', sans-serif !important;
  font-weight: 600 !important;
  font-size: 0.9rem !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(224,109,68,0.3);
}

.wp-block-button__link:hover,
.wp-element-button:hover,
button[type="submit"]:hover {
  background: #CC5F3A !important;
  background-color: #CC5F3A !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(224,109,68,0.4);
}

.is-style-outline .wp-block-button__link {
  background: transparent !important;
  background-color: transparent !important;
  border: 2px solid #0E7C7B !important;
  color: #0E7C7B !important;
  box-shadow: none !important;
}

.is-style-outline .wp-block-button__link:hover {
  background: #0E7C7B !important;
  background-color: #0E7C7B !important;
  color: #fff !important;
}

/* ---- CONTENT ---- */
.entry-content, .site-main > article {
  max-width: 820px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

/* ---- CARDS / COLUMNS ---- */
.wp-block-columns { gap: 1.5rem; margin: 2.5rem 0; }

.wp-block-column {
  background: #fff !important;
  border: 1px solid rgba(14,124,123,0.1) !important;
  border-radius: 16px !important;
  padding: 2rem !important;
  transition: all 0.4s ease;
  box-shadow: 0 2px 8px rgba(26,35,50,0.06);
  position: relative;
  overflow: hidden;
}

.wp-block-column::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0E7C7B, #D4A853);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.wp-block-column:hover {
  box-shadow: 0 8px 40px rgba(26,35,50,0.12);
  transform: translateY(-6px);
  border-color: transparent !important;
}

.wp-block-column:hover::before { opacity: 1; }
.wp-block-column h3 { margin-top: 0; }

/* ---- TABLES ---- */
.wp-block-table {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(26,35,50,0.08);
  margin: 2rem 0;
}

.wp-block-table table {
  border-collapse: collapse;
  width: 100%;
}

.wp-block-table thead {
  background: linear-gradient(135deg, #1A2332, #084F4E) !important;
}

.wp-block-table thead th {
  color: #fff !important;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  padding: 16px 20px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: none !important;
}

.wp-block-table tbody td {
  padding: 14px 20px;
  border-bottom: 1px solid rgba(14,124,123,0.08);
  border-left: none !important;
  border-right: none !important;
  font-size: 0.95rem;
}

.wp-block-table tbody tr { background: #fff; transition: background 0.2s; }
.wp-block-table tbody tr:nth-child(even) { background: #F7F5F0; }
.wp-block-table tbody tr:hover { background: #E8F5F5; }

/* ---- LISTS ---- */
.wp-block-list li { padding: 0.4em 0; }
.wp-block-list li strong { color: #0E7C7B; }

/* ---- SEPARATOR ---- */
.wp-block-separator {
  border: none !important;
  background: none !important;
  height: auto !important;
  margin: 3rem auto !important;
  max-width: 200px;
  opacity: 1 !important;
}

.wp-block-separator::before {
  content: '';
  display: block;
  width: 60px; height: 3px;
  background: linear-gradient(90deg, #0E7C7B, #D4A853);
  border-radius: 2px;
  margin: 0 auto;
}

/* ---- LINKS ---- */
.entry-content a:not(.wp-block-button__link) {
  color: #0E7C7B !important;
  text-decoration: none;
  border-bottom: 2px solid rgba(212,168,83,0.2);
  transition: all 0.2s ease;
}

.entry-content a:not(.wp-block-button__link):hover {
  color: #E06D44 !important;
  border-bottom-color: #E06D44;
}

/* ---- BLOG POSTS ---- */
article.post {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(26,35,50,0.06);
  border: 1px solid rgba(14,124,123,0.1);
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

article.post:hover {
  box-shadow: 0 4px 20px rgba(26,35,50,0.08);
  transform: translateY(-3px);
}

article.post .entry-title a {
  color: #1A2332 !important;
  text-decoration: none;
}

article.post .entry-title a:hover { color: #0E7C7B !important; }

.entry-meta, .entry-meta a {
  color: #6B7D8D !important;
  font-size: 0.85rem;
}

/* ---- FEATURED IMAGE ---- */
.post-thumbnail img, .wp-post-image {
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(26,35,50,0.08);
}

/* ---- FOOTER ---- */
.site-footer,
.site-footer-wrap,
footer.site-footer,
.footer-wrap,
.site-bottom-footer-wrap,
.site-footer-bottom-wrap,
#colophon {
  background: #1A2332 !important;
  background-color: #1A2332 !important;
  color: rgba(255,255,255,0.7) !important;
}

.site-footer a, footer a {
  color: #D4A853 !important;
}

.site-footer a:hover, footer a:hover {
  color: #fff !important;
}

/* ---- FORMS ---- */
.playacr-concierge-form {
  background: #fff;
  border: 1px solid rgba(14,124,123,0.1);
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 4px 20px rgba(26,35,50,0.08);
  margin: 2.5rem 0;
  position: relative;
  overflow: hidden;
}

.playacr-concierge-form::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0E7C7B, #D4A853, #E06D44);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .wp-block-columns { gap: 1rem; }
  .wp-block-column { padding: 1.5rem !important; }
  .entry-content { padding: 0 1rem; }
  h1 { font-size: 2rem !important; }
  .wp-block-table { display: block; overflow-x: auto; }
}


/* ==========================================
   PlayaCR Premium Homepage
   ========================================== */

/* Hero Section */
.pcr-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a3d3d 0%, #1A2332 40%, #0E7C7B 100%);
  overflow: hidden;
  margin-top: -20px;
}

.pcr-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.pcr-hero-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(to top, rgba(26,35,50,0.8), transparent);
}

.pcr-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 4rem 2rem;
  max-width: 800px;
}

.pcr-hero-eyebrow {
  color: #D4A853 !important;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem !important;
  font-weight: 600;
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
}

.pcr-hero-title {
  color: #fff !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: clamp(2.5rem, 6vw, 4rem) !important;
  font-weight: 700;
  line-height: 1.1 !important;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.pcr-hero-sub {
  color: rgba(255,255,255,0.8) !important;
  font-size: 1.15rem !important;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.pcr-hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.pcr-btn {
  display: inline-block;
  padding: 16px 36px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.pcr-btn-primary {
  background: #E06D44;
  color: #fff !important;
  box-shadow: 0 4px 20px rgba(224,109,68,0.4);
}

.pcr-btn-primary:hover {
  background: #CC5F3A;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(224,109,68,0.5);
  color: #fff !important;
  text-decoration: none;
}

.pcr-btn-outline {
  background: transparent;
  color: #fff !important;
  border: 2px solid rgba(255,255,255,0.4);
}

.pcr-btn-outline:hover {
  border-color: #D4A853;
  color: #D4A853 !important;
  text-decoration: none;
}

/* Container */
.pcr-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Sections */
.pcr-section {
  padding: 5rem 0;
}

.pcr-section-dark {
  background: #1A2332;
}

.pcr-section-sand {
  background: #EDE8DF;
}

.pcr-section-eyebrow {
  color: #0E7C7B !important;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem !important;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 0.75rem;
}

.pcr-section-title {
  font-family: 'Outfit', sans-serif !important;
  font-size: clamp(1.8rem, 4vw, 2.5rem) !important;
  color: #1A2332 !important;
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: -0.02em;
  border: none !important;
  padding: 0 !important;
}

/* Trust Bar */
.pcr-trust-bar {
  background: #fff;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(14,124,123,0.08);
}

.pcr-trust-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.pcr-trust-item {
  text-align: center;
}

.pcr-trust-number {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #0E7C7B;
  line-height: 1;
}

.pcr-trust-label {
  display: block;
  font-size: 0.8rem;
  color: #6B7D8D;
  margin-top: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pcr-trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(14,124,123,0.15);
}

/* Card Grid */
.pcr-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pcr-card {
  background: #fff;
  border: 1px solid rgba(14,124,123,0.08);
  border-radius: 16px;
  padding: 2rem;
  text-decoration: none !important;
  color: #1A2332 !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(26,35,50,0.04);
  position: relative;
  overflow: hidden;
  display: block;
}

.pcr-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0E7C7B, #D4A853);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.pcr-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(26,35,50,0.12);
  border-color: transparent;
  text-decoration: none !important;
  color: #1A2332 !important;
}

.pcr-card:hover::before {
  transform: scaleX(1);
}

.pcr-card-accent {
  border-color: rgba(224,109,68,0.2);
}

.pcr-card-accent::before {
  background: linear-gradient(90deg, #E06D44, #D4A853);
}

.pcr-card-icon {
  margin-bottom: 1.25rem;
}

.pcr-card-title {
  font-family: 'Outfit', sans-serif !important;
  font-size: 1.25rem !important;
  font-weight: 600;
  color: #1A2332 !important;
  margin: 0 0 0.75rem !important;
  border: none !important;
  padding: 0 !important;
}

.pcr-card-text {
  color: #6B7D8D !important;
  font-size: 0.95rem !important;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.pcr-card-link {
  color: #0E7C7B;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Split Section */
.pcr-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.pcr-feature-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 1.5rem 0 2rem !important;
}

.pcr-feature-list li {
  color: rgba(255,255,255,0.85) !important;
  padding: 0.5rem 0 !important;
  padding-left: 1.5rem !important;
  position: relative;
  font-size: 0.95rem !important;
}

.pcr-feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #D4A853;
  border-radius: 50%;
}

/* Stat Cards */
.pcr-split-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pcr-stat-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  backdrop-filter: blur(10px);
}

.pcr-stat-number {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #D4A853;
}

.pcr-stat-label {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  margin-top: 0.25rem;
}

/* Itinerary Cards */
.pcr-itinerary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pcr-itinerary-card {
  background: #fff;
  border: 1px solid rgba(14,124,123,0.08);
  border-radius: 16px;
  padding: 2rem;
  text-decoration: none !important;
  color: #1A2332 !important;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(26,35,50,0.04);
  display: block;
  position: relative;
}

.pcr-itinerary-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(26,35,50,0.1);
  text-decoration: none !important;
}

.pcr-itinerary-coming {
  opacity: 0.7;
}

.pcr-itinerary-badge {
  display: inline-block;
  background: #E8F5F5;
  color: #0E7C7B;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pcr-itinerary-card h3 {
  font-family: 'Outfit', sans-serif !important;
  font-size: 1.3rem !important;
  color: #1A2332 !important;
  margin: 0 0 0.75rem !important;
  border: none !important;
  padding: 0 !important;
}

.pcr-itinerary-card p {
  color: #6B7D8D !important;
  font-size: 0.9rem !important;
  line-height: 1.6;
}

.pcr-itinerary-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(14,124,123,0.08);
  font-size: 0.8rem;
  color: #6B7D8D;
  font-weight: 500;
}

/* CTA Section */
.pcr-cta-section {
  text-align: center;
  max-width: 700px;
}

/* Make homepage full width */
.page-id-4 .entry-content,
.page-id-4 .site-main > article {
  max-width: 100% !important;
  padding: 0 !important;
}

.page-id-4 .entry-header,
.page-id-4 .kadence-title {
  display: none !important;
}

/* Responsive */
@media (max-width: 768px) {
  .pcr-hero { min-height: 70vh; }
  .pcr-hero-content { padding: 3rem 1.5rem; }
  .pcr-card-grid { grid-template-columns: 1fr; }
  .pcr-itinerary-grid { grid-template-columns: 1fr; }
  .pcr-split { grid-template-columns: 1fr; gap: 2rem; }
  .pcr-trust-items { gap: 1.5rem; }
  .pcr-trust-divider { display: none; }
  .pcr-section { padding: 3rem 0; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .pcr-card-grid { grid-template-columns: repeat(2, 1fr); }
  .pcr-itinerary-grid { grid-template-columns: repeat(2, 1fr); }
}


/* Hero background image */
.pcr-hero {
  background: linear-gradient(135deg, rgba(10,61,61,0.85) 0%, rgba(26,35,50,0.8) 40%, rgba(14,124,123,0.7) 100%),
              url('https://playacr.com/wp-content/uploads/2026/03/playacr-hero-v2-1.png') center/cover no-repeat !important;
}

/* Remove Kadence footer credit */
.site-footer-bottom-wrap,
.site-info,
.footer-html,
.kadence-footer-bottom,
.site-footer .site-info {
  display: none !important;
}

/* Custom PlayaCR Footer */
.pcr-footer {
  background: #1A2332;
  padding: 4rem 0 0;
  color: rgba(255,255,255,0.7);
  font-family: 'DM Sans', sans-serif;
}

.pcr-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.pcr-footer-brand h3 {
  font-family: 'Outfit', sans-serif !important;
  color: #fff !important;
  font-size: 1.4rem !important;
  margin: 0 0 1rem !important;
  border: none !important;
  padding: 0 !important;
}

.pcr-footer-brand p {
  color: rgba(255,255,255,0.6) !important;
  font-size: 0.9rem !important;
  line-height: 1.7;
}

.pcr-footer h4 {
  color: #D4A853 !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 0.8rem !important;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 1.25rem !important;
  font-weight: 600;
}

.pcr-footer-links {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.pcr-footer-links li {
  padding: 0.3rem 0 !important;
}

.pcr-footer-links a {
  color: rgba(255,255,255,0.6) !important;
  text-decoration: none !important;
  font-size: 0.9rem;
  transition: color 0.2s ease;
  border: none !important;
}

.pcr-footer-links a:hover {
  color: #fff !important;
}

.pcr-footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.pcr-footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08) !important;
  color: rgba(255,255,255,0.7) !important;
  text-decoration: none !important;
  transition: all 0.3s ease;
  border: none !important;
}

.pcr-footer-social a:hover {
  background: #0E7C7B !important;
  color: #fff !important;
}

.pcr-footer-social svg {
  width: 18px;
  height: 18px;
}

.pcr-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 3rem;
  padding: 1.5rem 2rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.pcr-footer-bottom a {
  color: rgba(255,255,255,0.4) !important;
  text-decoration: none !important;
  border: none !important;
}

.pcr-footer-bottom a:hover {
  color: #D4A853 !important;
}

@media (max-width: 768px) {
  .pcr-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .pcr-footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}


/* Compact Header */
.site-header .site-header-wrap,
.site-header-inner-wrap,
.site-main-header-wrap .site-header-wrap {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  min-height: auto !important;
}

.site-header .custom-logo-link img,
.site-header .custom-logo,
.kadence-header .custom-logo-link img {
  max-height: 36px !important;
  width: auto !important;
  height: auto !important;
}

.site-header .site-branding {
  padding: 8px 0 !important;
}

.site-header .header-navigation,
.site-header .kadence-navigation {
  padding: 0 !important;
}

.site-header .site-title {
  font-size: 1.2rem !important;
}

.site-header .site-description {
  display: none !important;
}

.header-desktop-layout-standard .site-header-wrap {
  padding: 0 1.5rem !important;
}


/* ==========================================
   Layout Fixes - Full Width + Logo
   ========================================== */

/* Hide text title when logo is present */
.site-branding .site-title,
.site-branding .site-description,
.kadence-site-title,
.site-title.site-title {
  display: none !important;
}

.site-branding .custom-logo-link,
.site-branding .custom-logo-link img {
  display: block !important;
  visibility: visible !important;
}

/* Logo sizing in header */
.site-header .custom-logo-link img,
.site-header .custom-logo,
.kadence-header .custom-logo-link img {
  max-height: 40px !important;
  width: auto !important;
  height: 40px !important;
  object-fit: contain;
}

/* Full width homepage - remove all content wrappers */
.page-id-4 .content-wrap,
.page-id-4 .site-main,
.page-id-4 .entry-content-wrap,
.page-id-4 .content-container {
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin: 0 !important;
}

.page-id-4 .entry-content {
  max-width: 100% !important;
  padding: 0 !important;
}

.page-id-4 .site-main > article {
  max-width: 100% !important;
  padding: 0 !important;
}

/* Remove gap between header and hero */
.page-id-4 .site-main,
.page-id-4 .content-wrap {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* Hero full bleed */
.pcr-hero {
  margin: 0 !important;
  border-radius: 0 !important;
  width: 100vw !important;
  margin-left: calc(-50vw + 50%) !important;
}

/* All homepage sections full bleed */
.pcr-section,
.pcr-trust-bar {
  width: 100vw !important;
  margin-left: calc(-50vw + 50%) !important;
}

/* Kadence content area - override boxed layout */
.page-id-4 .site-container .site-inner-wrap {
  max-width: 100% !important;
}

.page-id-4 .kadence-inner-wrap {
  max-width: 100% !important;
  padding: 0 !important;
}

/* Remove any sidebar padding */
.page-id-4 #primary {
  padding: 0 !important;
  margin: 0 !important;
}


/* ==========================================
   Premium Logo
   ========================================== */

.pcr-hdr-logo {
  font-family: 'DM Serif Display', Georgia, 'Times New Roman', serif !important;
  font-size: 1.35rem !important;
  font-weight: 400 !important;
  color: #fff !important;
  letter-spacing: 0.18em;
  display: inline-block;
}

.pcr-hdr-cr {
  color: #D4A853 !important;
  margin-left: 0.06em;
  letter-spacing: 0.18em;
}

.site-branding .site-title,
.site-branding .site-description,
.site-branding .custom-logo-link {
  display: none !important;
}

.pcr-luxury-logo {
  display: none !important;
}




/* ==========================================
   Directory Listing Styles
   ========================================== */

.pcr-listing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.pcr-listing {
  background: #fff;
  border: 1px solid rgba(14,124,123,0.08);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(26,35,50,0.04);
}

.pcr-listing:hover {
  box-shadow: 0 6px 20px rgba(26,35,50,0.08);
  transform: translateY(-3px);
  border-color: rgba(14,124,123,0.15);
}

.pcr-listing-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}

.pcr-listing-badge {
  background: #E8F5F5;
  color: #0E7C7B;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pcr-listing-details {
  display: flex;
  gap: 1rem;
  margin: 0.75rem 0;
  flex-wrap: wrap;
}

.pcr-listing-details span {
  background: #F7F5F0;
  color: #1A2332;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 6px;
}

.pcr-listing-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.pcr-listing-link {
  color: #0E7C7B !important;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none !important;
  border: none !important;
  padding: 6px 14px;
  border-radius: 6px;
  background: rgba(14,124,123,0.06);
  transition: all 0.2s ease;
}

.pcr-listing-link:hover {
  background: rgba(14,124,123,0.12) !important;
  color: #084F4E !important;
}

@media (max-width: 768px) {
  .pcr-listing-grid {
    grid-template-columns: 1fr;
  }
}

/* Things to Do page full width */
.page-id-5 .entry-content,
.page-id-5 .site-main > article,
.page-id-5 .content-wrap,
.page-id-5 #primary {
  max-width: 100% !important;
  padding: 0 !important;
}
.page-id-5 .entry-header,
.page-id-5 .kadence-title {
  display: none !important;
}

/* Where to Stay + Dining full width */
.page-id-6 .entry-content,
.page-id-6 .site-main > article,
.page-id-6 .content-wrap,
.page-id-6 #primary,
.page-id-8 .entry-content,
.page-id-8 .site-main > article,
.page-id-8 .content-wrap,
.page-id-8 #primary {
  max-width: 100% !important;
  padding: 0 !important;
}
.page-id-6 .entry-header,
.page-id-6 .kadence-title,
.page-id-8 .entry-header,
.page-id-8 .kadence-title {
  display: none !important;
}
