/* ============================================
   TRADECRAFT TEMPLATE STYLES
   Professional template for home service businesses
   ============================================ */

/* Theme Variables (injected by Handlebars) */
:root {
  --primary: #1B2A4A;
  --accent: #E8530A;
  --background: #FFFFFF;
  --text: #111827;

  /* Derived colors */
  --primary-dark: color-mix(in srgb, var(--primary) 80%, black);
  --accent-light: color-mix(in srgb, var(--accent) 20%, white);
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  /* Typography */
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-heading: var(--font-sans);

  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;

  /* Border radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--background);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--primary);
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary);
  margin-bottom: var(--spacing-md);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: var(--spacing-md);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: var(--spacing-sm) var(--spacing-lg);
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}

.btn-primary {
  background: var(--accent);
  color: white;
}

.btn-primary:hover {
  background: var(--primary);
  color: white;
}

.btn-secondary {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.btn-secondary:hover {
  background: var(--accent);
  color: white;
}

/* ============================================
   HEADER
   ============================================ */
.header {
  background: var(--primary);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header > .container {
  padding-top: var(--spacing-md);
  padding-bottom: var(--spacing-md);
}

/* License bar at top */
.header-top {
  background: rgba(0, 0, 0, 0.2);
  padding: var(--spacing-xs) 0;
  font-size: 0.75rem;
  text-align: center;
}

/* Alias: templates may use either class depending on rendered version. Keep both. */
.header-license,
.license-info {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-lg);
}

.logo {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  flex-shrink: 0;
}

.logo-img {
  max-height: 54px;
  width: auto;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.logo-img.logo-size-small {
  max-height: 40px;
}

.logo-img.logo-size-medium {
  max-height: 54px;
}

.logo-img.logo-size-large {
  max-height: 86px;
}

.logo-text {
  color: white;
  font-weight: 600;
}

/* Hide companion text on mobile (logo + name mode) */
@media (max-width: 768px) {
  .logo-companion {
    display: none;
  }
}

.nav-list {
  display: flex;
  list-style: none;
  gap: var(--spacing-lg);
}

.nav-list > li {
  position: relative;
}

.nav-list > li > a {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
}

.nav-list > li > a:hover {
  color: var(--accent);
}

/* Dropdown arrow */
.dropdown-arrow {
  font-size: 0.6rem;
  opacity: 0.7;
  transition: transform 0.2s;
}

/* Navigation dropdowns */
.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 200px;
  padding: var(--spacing-sm) 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
  z-index: 200;
  margin-top: var(--spacing-sm);
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.nav-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-item {
  display: block;
  padding: var(--spacing-sm) var(--spacing-md);
  color: var(--text);
  font-weight: 500;
  font-size: 0.875rem;
  transition: background 0.2s, color 0.2s;
}

.dropdown-item:hover {
  background: var(--gray-50);
  color: var(--accent);
}

.header-phone {
  background: var(--accent);
  color: white;
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--radius-md);
  font-weight: 600;
}

.header-phone:hover {
  background: white;
  color: var(--accent);
}

.header-emergency {
  background: #dc2626;
  color: white;
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--radius-md);
  font-weight: 700;
  margin-right: var(--spacing-sm);
  text-transform: uppercase;
  font-size: 0.85em;
  letter-spacing: 0.02em;
}

.header-emergency:hover {
  background: #b91c1c;
  color: white;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--spacing-sm);
}

.mobile-menu-btn span {
  width: 25px;
  height: 2px;
  background: white;
  transition: all 0.3s;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  padding: var(--spacing-3xl) 0;
  min-height: 450px;
  display: flex;
  align-items: center;
  text-align: center;
}

.hero h1 {
  color: white;
  font-size: 3rem;
  margin-bottom: var(--spacing-md);
}

.hero p {
  font-size: 1.25rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto var(--spacing-xl);
}

.hero .btn {
  margin: var(--spacing-sm);
}

/* ============================================
   SECTIONS
   ============================================ */
section {
  padding: var(--spacing-3xl) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
}

.section-header p {
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

/* Trust Badges */
.trust-badges {
  background: var(--gray-50);
  padding: var(--spacing-lg) 0;
  border-bottom: 1px solid var(--gray-200);
}

.trust-badges .container {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  background: white;
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: 50px;
  border: 2px solid var(--gray-200);
  font-weight: 500;
  font-size: 0.875rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.trust-badge:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}

.badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 0.75rem;
}

.badge-icon.star {
  background: #fbbf24;
  color: white;
}

.badge-icon.check {
  background: var(--accent);
  color: white;
}

.badge-text {
  color: var(--gray-700);
}

/* ============================================
   TRUST BAR (service-city pages)
   ============================================ */
.trust-bar {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  padding: var(--spacing-md) 0;
}

.trust-bar .container {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-lg);
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  font-size: 0.875rem;
  color: var(--gray-700);
}

.trust-item .icon {
  font-size: 1rem;
}

/* ============================================
   CONTENT LIST STYLES
   ============================================ */
.blog-post-content ul,
.blog-post-content ol,
.content-section ul,
.content-section ol,
.content-inner ul,
.content-inner ol {
  margin: var(--spacing-md) 0;
  padding-left: 1.75rem;
}

.blog-post-content ul,
.content-section ul,
.content-inner ul {
  list-style-type: disc;
}

.blog-post-content ol,
.content-section ol,
.content-inner ol {
  list-style-type: decimal;
}

.blog-post-content li,
.content-section li,
.content-inner li {
  margin-bottom: var(--spacing-sm);
  line-height: 1.7;
}

.blog-post-content ul ul,
.content-section ul ul,
.content-inner ul ul {
  list-style-type: circle;
  margin-top: var(--spacing-xs);
}


/* ============================================
   INTRODUCTION SECTION
   ============================================ */
.intro-section {
  padding: var(--spacing-3xl) 0;
  background: var(--gray-50);
}

.intro-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--gray-700);
  text-align: center;
}

.intro-content p {
  margin-bottom: var(--spacing-md);
}

.intro-content ul,
.intro-content ol {
  display: inline-block;
  text-align: left;
  padding-left: 1.5rem;
  margin-bottom: var(--spacing-md);
}

.intro-content li {
  margin-bottom: var(--spacing-xs);
}

/* ============================================
   SERVICES GRID
   ============================================ */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-xl);
}

.service-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-md);
  transition: transform 0.2s, box-shadow 0.2s;
}

/* Service card with image */
.service-card.has-image {
  padding: 0;
  overflow: hidden;
}

.service-card-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.service-card.has-image:hover .service-card-image img {
  transform: scale(1.05);
}

.service-card-content {
  padding: var(--spacing-lg);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.service-card h3 {
  margin-bottom: var(--spacing-sm);
}

.service-card p {
  color: var(--gray-600);
  margin-bottom: var(--spacing-md);
}

.service-card a {
  font-weight: 600;
}

/* ============================================
   REVIEWS
   ============================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-xl);
}

.review-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-md);
}

.review-card .stars {
  color: #fbbf24;
  font-size: 1.25rem;
  margin-bottom: var(--spacing-md);
}

.review-card blockquote {
  font-style: italic;
  color: var(--gray-700);
  margin-bottom: var(--spacing-md);
}

.review-card .author {
  font-weight: 600;
  color: var(--primary);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta {
  background: var(--accent);
  color: white;
  text-align: center;
}

.cta h2 {
  color: white;
}

.cta p {
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto var(--spacing-xl);
}

.cta .btn-primary {
  background: white;
  color: var(--accent);
}

.cta .btn-primary:hover {
  background: var(--primary);
  color: white;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-form-wrapper {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-md);
}

.contact-form-wrapper h3 {
  margin-bottom: var(--spacing-lg);
}

.form-group {
  margin-bottom: var(--spacing-md);
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: var(--spacing-xs);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: var(--spacing-sm) var(--spacing-md);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-md);
  font-size: 1rem;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

/* ============================================
   CONTENT SECTIONS
   ============================================ */
.page-header {
  background: var(--primary);
  color: white;
  padding: var(--spacing-2xl) 0;
  text-align: center;
}

.page-header.has-image {
  padding: var(--spacing-3xl) 0;
  background-size: cover;
  background-position: center;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-header h1 {
  color: white;
}

.page-header p {
  opacity: 0.9;
}

.content-section {
  padding: var(--spacing-3xl) 0;
}

.content-inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--spacing-2xl);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-2xl);
}

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-xl);
}

.blog-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.blog-card-content {
  padding: var(--spacing-lg);
}

.blog-card h3 {
  margin-bottom: var(--spacing-sm);
}

.blog-card .date {
  color: var(--gray-600);
  font-size: 0.875rem;
}

/* Blog post images */
.blog-post-image {
  margin-bottom: var(--spacing-xl);
}

.blog-post-image img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.blog-card-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card time {
  color: var(--gray-600);
  font-size: 0.875rem;
}

.blog-post-content {
  max-width: 800px;
  margin: 0 auto;
}

.blog-post-content h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
  margin: 2rem 0 0.75rem;
  line-height: 1.25;
}

.blog-post-content h2:first-child {
  margin-top: 0;
}

.blog-post-content h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--primary);
  margin: 1.5rem 0 0.5rem;
  line-height: 1.3;
}

.blog-post-content p {
  font-size: 1.125rem;
  line-height: 1.8;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-md);
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Places photos with photographer attribution (Stream 4d).
   Visible attribution caption is required by Google Places API TOS;
   do not hide or visually-suppress .photo-attribution. */
.places-gallery .gallery-item.places-photo {
  display: flex;
  flex-direction: column;
  margin: 0;
}

.places-gallery .gallery-item.places-photo .photo-attribution {
  font-size: 0.75rem;
  color: var(--gray-600);
  padding: 0.5rem var(--spacing-sm);
  line-height: 1.4;
  background: var(--gray-50);
}

.places-gallery .gallery-item.places-photo .photo-attribution a {
  color: inherit;
  text-decoration: underline;
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--gray-200);
}

.faq-item h3 {
  margin-bottom: var(--spacing-sm);
  font-size: 1.125rem;
}

.faq-item p {
  color: var(--gray-600);
  margin-bottom: 0;
}

/* FAQ Accordion (details/summary) */
details.faq-item {
  padding: 0;
}

details.faq-item summary {
  padding: var(--spacing-lg) 0;
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--primary);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

details.faq-item summary::-webkit-details-marker {
  display: none;
}

details.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--accent);
  transition: transform 0.2s;
}

details.faq-item[open] summary::after {
  transform: rotate(45deg);
}

details.faq-item .faq-answer {
  padding-bottom: var(--spacing-lg);
  color: var(--gray-600);
  line-height: 1.7;
}

/* Home FAQ Section */
.home-faq {
  background: var(--gray-50);
}

/* ============================================
   MAP SECTION
   ============================================ */
.map-section {
  padding: var(--spacing-2xl) 0;
  background: var(--gray-50);
}

.map-section h2 {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-container iframe {
  display: block;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--primary);
  color: rgba(255, 255, 255, 0.9);
  padding: var(--spacing-3xl) 0 var(--spacing-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-2xl);
  margin-bottom: var(--spacing-2xl);
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  display: block;
  margin-bottom: var(--spacing-md);
}

.footer-address {
  font-style: normal;
  opacity: 0.8;
  margin-bottom: var(--spacing-sm);
}

.footer h4 {
  color: white;
  margin-bottom: var(--spacing-md);
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: var(--spacing-sm);
}

.footer a {
  color: rgba(255, 255, 255, 0.8);
}

.footer a:hover {
  color: var(--accent);
}

/* Footer Certifications */
.footer-certifications {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--spacing-xl) 0;
  text-align: center;
}

.footer-certifications h4 {
  margin-bottom: var(--spacing-md);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.9;
}

.cert-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--spacing-sm);
}

.cert-badge {
  display: inline-block;
  padding: var(--spacing-xs) var(--spacing-md);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}
a.cert-link:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  text-decoration: underline;
  cursor: pointer;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--spacing-xl);
  text-align: center;
  opacity: 0.7;
  font-size: 0.875rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }

  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 1rem; }

  /* Hide license bar on mobile */
  .header-top {
    display: none;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--primary);
    padding: var(--spacing-md);
  }

  .nav.nav-open {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    gap: var(--spacing-md);
    text-align: center;
  }

  /* Hide dropdown menus on mobile - just show links */
  .dropdown-menu {
    display: none;
  }

  .dropdown-arrow {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .header-phone {
    display: none;
  }

  .content-inner,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  /* Trust badges responsive */
  .trust-badges .container {
    gap: var(--spacing-sm);
  }

  .trust-badge {
    font-size: 0.75rem;
    padding: var(--spacing-xs) var(--spacing-sm);
  }

  .badge-icon {
    width: 16px;
    height: 16px;
    font-size: 0.625rem;
  }
}

/* Promo Section */
.promo-section {
  padding: var(--spacing-3xl) 0;
  background: var(--gray-50);
}
@media (min-width: 768px) {
  .promo-section { padding: 5rem 0; }
}

/* Promo: Text-only centered layout */
.promo-centered {
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: var(--spacing-2xl) var(--spacing-2xl);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}
@media (min-width: 768px) {
  .promo-centered { padding: var(--spacing-3xl); }
}
.promo-centered h2 {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}
.promo-centered h2::after {
  content: '';
  display: block;
  width: 3rem;
  height: 3px;
  background: var(--accent);
  margin: var(--spacing-md) auto 0;
  border-radius: 2px;
}

/* Promo: Title */
.promo-content h2 {
  font-family: var(--font-heading);
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--primary);
  margin-bottom: var(--spacing-xl);
}
@media (min-width: 768px) {
  .promo-content h2 { font-size: 2.25rem; }
}
@media (min-width: 1024px) {
  .promo-content h2 { font-size: 3rem; }
}

/* Promo: Body prose */
.promo-body {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--gray-700);
}
.promo-body p {
  margin-bottom: 1.5em;
}
.promo-body p:last-child {
  margin-bottom: 0;
}
.promo-body strong, .promo-body b {
  font-weight: 700;
  color: var(--gray-900);
}
.promo-body em, .promo-body i {
  font-style: italic;
}
.promo-body u {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.promo-body a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.15s;
}
.promo-body a:hover {
  color: var(--primary);
}

/* Promo: Lists */
.promo-body ul, .promo-body ol {
  padding-left: 2rem;
  margin-top: 1.25em;
  margin-bottom: 1.5em;
}
.promo-body ul { list-style-type: disc; }
.promo-body ol { list-style-type: decimal; }
.promo-body li {
  margin-bottom: 0.625em;
  padding-left: 0.375rem;
  line-height: 1.65;
}
.promo-body li:last-child { margin-bottom: 0; }
.promo-body li ul, .promo-body li ol {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

/* Promo: Two-column grid layout */
.promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-3xl);
  align-items: center;
}
.promo-grid .promo-content {
  text-align: left;
}
.promo-grid.image-right .promo-image { order: 2; }
.promo-grid.image-right .promo-content { order: 1; }

/* Promo: Image */
.promo-image img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

/* Promo: Mobile stacking */
@media (max-width: 768px) {
  .promo-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }
  .promo-grid.image-right .promo-image { order: 1; }
  .promo-grid.image-right .promo-content { order: 2; }
  .promo-content h2 { margin-bottom: var(--spacing-lg); }
}

/* Booking CTA */
.booking-cta { text-align: center; padding: 2rem; background: var(--bg-alt, #f8f9fa); border-radius: 8px; }
.booking-cta h3 { margin-bottom: 1.5rem; font-size: 1.25rem; }
.btn-large { padding: 1rem 2.5rem; font-size: 1.1rem; }
