/*
Theme Name: Lyons Links Child
Template: generatepress
Version: 1.0.0
Description: Lyons Links – Tailored Travel. Local Knowledge. Great Golf.
*/

/* =============================================
   GENERATEPRESS LAYOUT RESET
   ============================================= */

/* Remove GP's default page title and article padding so our custom sections bleed full-width */
.page-title,
.entry-title { display: none !important; }

.inside-article,
.entry-content {
  padding: 0 !important;
  margin: 0 !important;
}

/* Make GP's content area go full-width */
.site-content .content-area,
.site-content .site-main,
.site-content article,
.site-content .inside-article {
  max-width: 100% !important;
  width: 100% !important;
  float: none !important;
}

/* Blog archive (home.php) — #main is a direct flex child of #content; make it fill */
.blog #main {
  flex: 1 1 100% !important;
  width: 100% !important;
  min-width: 0;
}

/* Remove GP's container constraint on content */
.container,
.grid-container {
  max-width: 100% !important;
  padding: 0 !important;
}

/* Kill GP's default header/nav — we use our own */
.site-header,
.main-navigation {
  display: none !important;
}

/* Remove all GP spacing between header and page content */
.site-content,
#primary,
.site-main,
.site-content article {
  padding: 0 !important;
  margin: 0 !important;
}

/* Transparent article bg so body colour doesn't bleed through any residual gap */
.separate-containers .inside-article {
  background-color: transparent !important;
}

/* Override GP's gray body bg — prevents any gap from showing as a visible strip */
body {
  background-color: #fff !important;
}

/* =============================================
   CUSTOM HEADER
   ============================================= */

.ll-notice-strip {
  background: var(--ll-forest);
  color: rgba(247,242,242,0.85);
  text-align: center;
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.55rem 1rem;
  position: sticky;
  top: 0;
  z-index: 200;
}

.ll-notice-strip a {
  color: var(--ll-gold);
  text-decoration: none;
  margin-left: 0.6em;
  transition: opacity 0.2s;
}

.ll-notice-strip a:hover { opacity: 0.8; }

.ll-notice-short { display: none; }

.ll-header {
  background: #fff;
  position: sticky;
  top: 2rem; /* offset by notice strip height */
  z-index: 100;
}

.ll-header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 80px;
}

.ll-logo-link {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  flex-shrink: 0;
}

.ll-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--ll-forest);
  letter-spacing: 0.05em;
}

.ll-logo-tagline {
  font-family: 'Lato', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ll-gold);
  margin-top: 0.1rem;
}

.ll-header img.custom-logo {
  max-height: 64px;
  width: auto;
}

.ll-main-nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.ll-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.ll-nav-list li a {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ll-forest);
  text-decoration: none;
  padding: 0.5rem 0.85rem;
  display: block;
  transition: color 0.2s;
  position: relative;
}

.ll-nav-list li a:hover,
.ll-nav-list li.current-menu-item > a {
  color: var(--ll-gold);
}

.ll-nav-list li.current-menu-item > a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0.85rem;
  right: 0.85rem;
  height: 2px;
  background: var(--ll-gold);
}

.ll-header-cta {
  flex-shrink: 0;
  background: var(--ll-gold);
  color: var(--ll-forest);
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.65rem 1.5rem;
  text-decoration: none;
  border: 1px solid var(--ll-gold);
  transition: all 0.22s ease;
  white-space: nowrap;
}

.ll-header-cta:hover {
  background: var(--ll-forest);
  color: var(--ll-cream);
  border-color: var(--ll-forest);
}

/* Mobile menu toggle */
.ll-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.ll-menu-toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ll-forest);
  transition: all 0.2s;
}

@media (max-width: 900px) {
  .ll-menu-toggle { display: flex; }
  .ll-header-cta { display: none; }

  .ll-nav-list {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 2rem;
    border-top: 1px solid rgba(18,46,31,0.1);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    gap: 0;
  }

  .ll-nav-list.is-open { display: flex; }
  .ll-nav-list li a {
    padding: 0.9rem 0;
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    border-bottom: 1px solid rgba(18,46,31,0.07);
    width: 100%;
    display: block;
  }
  /* position relative on header (sticky), not nav — makes dropdown full-width */
  .ll-header { position: sticky; }
  .ll-main-nav { position: static; }
}

/* Brand tokens */
:root {
  --ll-cream: #F7F2F2;
  --ll-gold: #B89A49;
  --ll-ink: #1A1A1A;
  --ll-sage: #7C8C58;
  --ll-forest: #122E1F;
}

/* Base */
body {
  font-family: 'Lato', sans-serif;
  color: var(--ll-ink);
  background: var(--ll-cream);
  font-size: 17px;
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6,
.entry-title,
.page-title {
  font-family: 'Playfair Display', serif;
  color: var(--ll-forest);
  line-height: 1.2;
}

/* Navigation */
.main-navigation .main-nav ul li a,
.main-navigation .menu-toggle {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ll-forest);
}

.main-navigation .main-nav ul li a:hover,
.main-navigation .main-nav ul li.current-menu-item > a {
  color: var(--ll-gold);
}

/* Site header */
.site-header {
  background: var(--ll-cream);
  border-bottom: 1px solid rgba(18,46,31,0.12);
}

.site-branding .site-title a {
  font-family: 'Playfair Display', serif;
  color: var(--ll-forest);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
}

/* Buttons */
.wp-block-button__link,
.button,
button[type="submit"] {
  background: var(--ll-gold);
  color: var(--ll-forest);
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  border: 1px solid var(--ll-gold);
  border-radius: 0;
  padding: 0.9rem 2.25rem;
  transition: all 0.25s ease;
}

.wp-block-button__link:hover,
.button:hover {
  background: var(--ll-forest);
  color: var(--ll-cream);
  border-color: var(--ll-forest);
}

/* Notice strip */
.ll-notice-strip {
  background: var(--ll-forest);
  color: var(--ll-cream);
  text-align: center;
  font-size: 0.8rem;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.6rem 1rem;
}

.ll-notice-strip a {
  color: var(--ll-gold);
  text-decoration: none;
  margin-left: 0.5em;
}

/* Hero */
.ll-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ll-forest);
}

.ll-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-image: url('https://images.pexels.com/photos/1325751/pexels-photo-1325751.jpeg');
  opacity: 0.45;
}

.ll-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 4rem 2rem;
  color: var(--ll-cream);
}

.ll-hero-eyebrow {
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ll-gold);
  margin-bottom: 1.25rem;
  display: block;
}

.ll-hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--ll-cream);
  line-height: 1.1;
  margin: 0 0 1.5rem;
}

.ll-hero-lede {
  font-size: 1.15rem;
  line-height: 1.65;
  color: rgba(247,242,242,0.88);
  margin-bottom: 2.25rem;
}

.ll-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.ll-btn-primary {
  display: inline-block;
  background: var(--ll-gold);
  color: var(--ll-forest);
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  padding: 1rem 2.25rem;
  border: 1px solid var(--ll-gold);
  text-decoration: none;
  transition: all 0.25s ease;
}

.ll-btn-primary:hover {
  background: var(--ll-forest);
  color: var(--ll-cream);
  border-color: var(--ll-cream);
}

.ll-btn-outline {
  display: inline-block;
  border: 1px solid rgba(247,242,242,0.6);
  color: var(--ll-cream);
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.9rem 2rem;
  text-decoration: none;
  transition: all 0.25s ease;
}

.ll-btn-outline:hover {
  background: var(--ll-cream);
  color: var(--ll-forest);
}

/* Trust strip */
.ll-trust-strip {
  background: var(--ll-forest);
  color: rgba(247,242,242,0.75);
  text-align: center;
  font-size: 0.78rem;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1.1rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.ll-trust-strip span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ll-trust-strip .ll-trust-dot {
  color: var(--ll-gold);
  font-size: 1rem;
}

/* Section base */
.ll-section {
  padding: 5rem 1.5rem;
}

.ll-section-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.ll-section-eyebrow {
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ll-gold);
  margin-bottom: 0.75rem;
  display: block;
}

.ll-section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--ll-forest);
  margin-bottom: 1rem;
}

.ll-section-lede {
  font-size: 1.05rem;
  color: var(--ll-ink);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 3rem;
}

/* What we do — 3 columns */
.ll-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.ll-value-card {
  padding: 2.5rem 2rem;
  border-top: 3px solid var(--ll-gold);
  background: white;
}

.ll-value-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--ll-forest);
  margin: 1rem 0 0.75rem;
}

.ll-value-icon {
  font-size: 1.5rem;
  color: var(--ll-gold);
}

/* Itinerary cards */
.ll-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.ll-card {
  background: white;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ll-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(18,46,31,0.12);
}

.ll-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.ll-card-body {
  padding: 1.5rem;
}

.ll-card-region {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ll-sage);
  margin-bottom: 0.4rem;
  display: block;
}

.ll-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--ll-forest);
  margin: 0 0 0.5rem;
}

.ll-card-meta {
  font-size: 0.82rem;
  color: #666;
  margin-bottom: 1rem;
}

.ll-card-link {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ll-gold);
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ll-card-link:hover { color: var(--ll-forest); }

/* Why Lyons Links — 2-col */
.ll-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .ll-why-grid { grid-template-columns: 1fr; gap: 2rem; }
}

.ll-why-proof {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.ll-why-proof li {
  padding: 0.75rem 0 0.75rem 1.5rem;
  border-bottom: 1px solid rgba(18,46,31,0.1);
  position: relative;
  font-size: 1rem;
  color: var(--ll-ink);
}

.ll-why-proof li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--ll-gold);
  font-size: 0.6rem;
  top: 1.1rem;
}

.ll-why-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

/* Testimonials */
.ll-testimonials {
  background: var(--ll-cream);
  padding: 5rem 1.5rem;
}

.ll-testimonials-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.ll-pullquote {
  border-left: 4px solid var(--ll-gold);
  padding: 1.5rem 2rem;
  margin-bottom: 3rem;
  background: white;
}

.ll-pullquote blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  color: var(--ll-forest);
  margin: 0 0 1rem;
  line-height: 1.4;
  font-style: italic;
}

.ll-pullquote cite {
  font-size: 0.82rem;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ll-sage);
  font-style: normal;
}

.ll-review-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.ll-review-card {
  background: white;
  padding: 1.5rem;
  border-top: 2px solid var(--ll-sage);
}

.ll-review-card p {
  font-style: italic;
  font-size: 0.92rem;
  color: var(--ll-ink);
  margin-bottom: 0.75rem;
}

.ll-review-card cite {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ll-sage);
  font-style: normal;
}

/* Ryder Cup feature */
.ll-ryder-block {
  background: var(--ll-forest);
  padding: 5rem 2rem;
  text-align: center;
}

.ll-ryder-block .ll-section-eyebrow { color: var(--ll-gold); }

.ll-ryder-block h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--ll-cream);
  margin-bottom: 1.25rem;
}

.ll-ryder-block p {
  color: rgba(247,242,242,0.82);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto 2rem;
}

/* Newsletter band */
.ll-newsletter {
  background: var(--ll-cream);
  border-top: 2px solid rgba(18,46,31,0.1);
  border-bottom: 2px solid rgba(18,46,31,0.1);
  padding: 5rem 2rem;
  text-align: center;
}

.ll-newsletter h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--ll-forest);
  margin-bottom: 0.75rem;
}

.ll-newsletter p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 2rem;
}

.ll-newsletter-form {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 500px;
  margin: 0 auto;
}

.ll-newsletter-form input[type="email"] {
  flex: 1;
  min-width: 220px;
  padding: 0.85rem 1.25rem;
  border: 1px solid rgba(18,46,31,0.3);
  background: white;
  font-size: 0.95rem;
  font-family: 'Lato', sans-serif;
  outline: none;
}

.ll-newsletter-form input[type="email"]:focus {
  border-color: var(--ll-forest);
}

.ll-newsletter-form button {
  padding: 0.85rem 1.75rem;
  background: var(--ll-forest);
  color: var(--ll-cream);
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.ll-newsletter-form button:hover { background: var(--ll-gold); color: var(--ll-forest); }

/* Footer */
.site-footer {
  background: var(--ll-forest);
  color: rgba(247,242,242,0.75);
}

.site-footer a {
  color: rgba(247,242,242,0.75);
  text-decoration: none;
  transition: color 0.2s;
}

.site-footer a:hover { color: var(--ll-gold); }

.ll-footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 4rem 1.5rem 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}

@media (max-width: 768px) {
  .ll-footer-inner { grid-template-columns: 1fr; gap: 2rem; }
}

.ll-footer-brand h3 {
  font-family: 'Playfair Display', serif;
  color: var(--ll-cream);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.ll-footer-brand p {
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.ll-footer-tagline {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ll-gold);
}

.ll-footer-nav h4, .ll-footer-contact h4 {
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ll-gold);
  margin-bottom: 1rem;
}

.ll-footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ll-footer-nav ul li {
  margin-bottom: 0.5rem;
  font-size: 0.88rem;
}

.ll-footer-contact p {
  font-size: 0.88rem;
  margin-bottom: 0.4rem;
}

.ll-footer-bottom {
  border-top: 1px solid rgba(247,242,242,0.1);
  text-align: center;
  padding: 1.25rem 1.5rem;
  font-size: 0.75rem;
  color: rgba(247,242,242,0.45);
  display: flex;
  justify-content: space-between;
  max-width: 1140px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* Page hero (inner pages) */
.ll-page-hero {
  background: var(--ll-forest);
  padding: 5rem 2rem 4rem;
  text-align: center;
}

.ll-page-hero h1 {
  font-family: 'Playfair Display', serif;
  color: var(--ll-cream);
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 0.75rem;
}

.ll-page-hero p {
  color: rgba(247,242,242,0.82);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Bg utility classes for Gutenberg blocks */
.has-ll-forest-background-color { background-color: var(--ll-forest) !important; }
.has-ll-cream-background-color { background-color: var(--ll-cream) !important; }
.has-ll-gold-background-color { background-color: var(--ll-gold) !important; }
.has-ll-sage-background-color { background-color: var(--ll-sage) !important; }
.has-ll-forest-color { color: var(--ll-forest) !important; }
.has-ll-cream-color { color: var(--ll-cream) !important; }
.has-ll-gold-color { color: var(--ll-gold) !important; }
.has-ll-sage-color { color: var(--ll-sage) !important; }

/* =============================================
   SINGLE BLOG POST CONTENT
   ============================================= */

/* Hide legacy ll-page-hero block in post content — single.php renders its own hero */
.single .ll-page-hero { display: none !important; }

.ll-post-content p { margin-bottom: 1.6rem; }
.ll-post-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--ll-forest);
  margin: 2.5rem 0 1rem;
  font-weight: 600;
}
.ll-post-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--ll-forest);
  margin: 2rem 0 0.75rem;
  font-weight: 600;
}
.ll-post-content ul,
.ll-post-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.6rem;
}
.ll-post-content li { margin-bottom: 0.6rem; }
.ll-post-content blockquote {
  border-left: 3px solid var(--ll-gold);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--ll-forest);
  background: var(--ll-cream);
}
.ll-post-content a {
  color: var(--ll-forest);
  border-bottom: 1px solid var(--ll-gold);
  text-decoration: none;
}
.ll-post-content a:hover { color: var(--ll-gold); }
.ll-post-content img {
  width: 100%;
  height: auto;
  margin: 2rem 0;
}

/* Single post — make #main full-width like blog archive */
.single #main,
.single-itinerary #main {
  flex: 1 1 100% !important;
  width: 100% !important;
  min-width: 0;
}

/* ITINERARY CONTENT */
.ll-itinerary-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--ll-forest);
  margin: 3rem 0 0.875rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(18,46,31,0.1);
  font-weight: 600;
}
.ll-itinerary-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.ll-itinerary-content p {
  margin-bottom: 1.4rem;
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(26,26,26,0.85);
}

/* =============================================
   MOBILE FIXES
   ============================================= */

@media (max-width: 600px) {
  .ll-notice-long { display: none; }
  .ll-notice-short { display: inline; }

  /* Force all auto-fill grids to single column */
  .ll-values-grid,
  .ll-cards-grid {
    grid-template-columns: 1fr !important;
  }

  /* Reduce section padding on phones */
  section[style*="padding:5rem"],
  section[style*="padding: 5rem"],
  section[style*="padding:6rem"],
  section[style*="padding: 6rem"] {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  /* Tighten horizontal padding */
  section[style*="padding:5rem 2.5rem"],
  section[style*="padding:4rem 2.5rem"],
  section[style*="padding:6rem 2.5rem"] {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }

  /* Hero sections — reduce top padding so text doesn't sit too low */
  section[style*="min-height"] > div[style*="padding:8rem"],
  section[style*="min-height"] > div[style*="padding:7rem"] {
    padding-top: 5rem !important;
    padding-bottom: 2.5rem !important;
  }

  /* Itinerary enquire CTA button — full width on phone */
  .single-itinerary section:last-of-type a[style*="display:inline-block"] {
    display: block !important;
    text-align: center;
  }
}
