/* British Pullman - Shared Stylesheet
   luxury-trains.co.uk/belmond-british-pullman/
   ================================================== */

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

:root {
  --cream:       #faf7f2;
  --cream2:      #f3ede3;
  --white:       #ffffff;
  --black:       #000000;
  --gold:        #a8834a;
  --gold2:       #c9a05c;
  --gold-light:  #e8d5b0;
  --charcoal:    #1e1e1e;
  --dark:        #2c2c2c;
  --mid:         #5a5248;
  --muted:       #8c8278;
  --border:      #ddd5c8;
  --border-light:#ede8e0;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--cream); color: var(--dark); font-family: 'Montserrat', sans-serif; font-weight: 300; line-height: 1.7; overflow-x: hidden; }

/* TOPBAR */
.topbar { background: var(--charcoal); padding: 9px 48px; display: flex; justify-content: flex-end; align-items: center; gap: 20px; font-size: 10.5px; letter-spacing: 0.13em; text-transform: uppercase; color: #d4cdc4; position: sticky; top: 0; z-index: 100; }
.topbar a { color: #e8e2da; text-decoration: none; transition: color 0.2s; }
.topbar a:hover { color: #fff; }
.topbar .phone { color: var(--gold2); font-weight: 600; font-size: 13px; letter-spacing: 0.08em; }
.topbar .div { color: #444; }

/* NAV */
nav.main-nav { background: var(--white); border-bottom: 1px solid var(--border); padding: 0 48px; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 38px; z-index: 99; box-shadow: 0 1px 12px rgba(0,0,0,0.06); min-height: 80px; }
.nav-logo img { height: 60px; width: 240px; padding: 5px 0; }
.nav-links { display: flex; list-style: none; }
.nav-links > li { position: relative; }
.nav-links > li > a { display: block; padding: 22px 16px; color: var(--dark); text-decoration: none; font-size: 10.5px; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 500; transition: color 0.2s; border-bottom: 2px solid transparent; }
.nav-links > li > a:hover, .nav-links > li > a.active { color: var(--gold); border-bottom-color: var(--gold); }
.dropdown { display: none; position: absolute; top: 100%; left: 0; background: var(--white); border: 1px solid var(--border); border-top: 2px solid var(--gold); min-width: 240px; padding: 8px 0; box-shadow: 0 8px 28px rgba(0,0,0,0.1); }
.nav-links > li:hover .dropdown { display: block; }
.dropdown a { display: block; padding: 11px 22px; color: var(--mid); text-decoration: none; font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; transition: all 0.2s; border-left: 2px solid transparent; }
.dropdown a:hover { color: var(--gold); background: var(--cream); border-left-color: var(--gold); padding-left: 28px; }

/* HAMBURGER */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; z-index: 200; }
.hamburger span { display: block; width: 24px; height: 1.5px; background: var(--charcoal); transition: all 0.3s ease; transform-origin: center; }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* MOBILE NAV */
.mobile-nav { display: none; position: fixed; inset: 0; background: var(--cream); z-index: 150; flex-direction: column; justify-content: center; align-items: center; padding: 80px 40px 40px; overflow-y: auto; }
.mobile-nav.open { display: flex; }
.mobile-nav-links { list-style: none; width: 100%; max-width: 360px; }
.mobile-nav-links > li { border-bottom: 1px solid var(--border); }
.mobile-nav-links > li > a { display: flex; justify-content: space-between; align-items: center; padding: 18px 4px; color: var(--charcoal); text-decoration: none; font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 300; transition: color 0.2s; }
.mobile-nav-links > li > a:hover { color: var(--gold); }
.mobile-nav-links > li > a .chevron { font-size: 12px; color: var(--gold); transition: transform 0.3s; }
.mobile-nav-links > li.expanded > a .chevron { transform: rotate(180deg); }
.mobile-dropdown { display: none; padding: 4px 0 14px 14px; }
.mobile-nav-links > li.expanded .mobile-dropdown { display: block; }
.mobile-dropdown a { display: block; padding: 8px 4px; color: var(--muted); text-decoration: none; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; transition: color 0.2s; }
.mobile-dropdown a:hover { color: var(--gold); }
.mobile-nav-contact { margin-top: 32px; text-align: center; width: 100%; max-width: 360px; }
.mobile-phone { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; color: var(--gold); text-decoration: none; display: block; margin-bottom: 16px; }
.mobile-enquiry { display: inline-block; padding: 12px 36px; background: var(--gold); color: #fff; font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; text-decoration: none; transition: background 0.2s; }
.mobile-enquiry:hover { background: var(--gold2); }

/* HERO */
.hero { position: relative; height: 52vh; min-height: 360px; display: flex; align-items: flex-end; justify-content: flex-start; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top right, rgba(30,30,30,0.85) 0%, rgba(30,30,30,0.4) 40%, rgba(30,30,30,0.05) 70%);
  z-index: 1;
}
.hero-content { z-index: 2; }
@keyframes heroZoom { from { transform: scale(1.03); } to { transform: scale(1.07); } }
.hero-content { position: relative; z-index: 2; max-width: 620px; padding: 0 80px 56px; animation: fadeUp 1s ease both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.hero-eyebrow { font-size: 10px; letter-spacing: 0.38em; text-transform: uppercase; color: var(--white); margin-bottom: 14px; display: flex; align-items: center; gap: 12px; }
.hero-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--white); opacity: 0.7; }
.hero h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 4.5vw, 3.8rem); font-weight: 300; line-height: 1.08; color: var(--gold-light); letter-spacing: 0.02em; margin-bottom: 14px; }
.hero h1 em { color: var(--white); font-style: italic; }
.hero-sub { font-size: 13px; color: var(--white); line-height: 1.8; }

/* HERO CTAS */
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 24px; }

/* BREADCRUMB */
.breadcrumb { background: var(--white); border-bottom: 1px solid var(--border); padding: 12px 48px; font-size: 11.5px; letter-spacing: 0.08em; color: var(--dark); }
.breadcrumb a { color: var(--dark); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); margin: 0 8px; }

/* MONTH NAV */
.month-nav { background: var(--white); border-bottom: 1px solid var(--border); padding: 14px 48px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.month-nav-prev, .month-nav-next { display: flex; align-items: center; gap: 8px; font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mid); text-decoration: none; font-weight: 500; transition: color 0.2s; }
.month-nav-prev:hover, .month-nav-next:hover { color: var(--gold); }
.month-nav-prev::before { content: '‹'; font-size: 17px; }
.month-nav-next::after { content: '›'; font-size: 17px; }
.month-nav-title { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 300; color: var(--charcoal); letter-spacing: 0.04em; }

/* PAGE LAYOUT */
.page-wrapper { max-width: 1200px; margin: 0 auto; padding: 64px 48px; display: grid; grid-template-columns: 1fr 300px; gap: 64px; align-items: start; }

/* MAIN CONTENT */
.main-content h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 300; color: var(--charcoal); line-height: 1.15; margin-bottom: 8px; }
.main-content .table-intro { font-size: 13.5px; color: var(--dark); margin-bottom: 28px; line-height: 1.8; }

/* DEPARTURE TABLE */
.departure-table-wrap { overflow-x: auto; margin-bottom: 40px; }
.departure-table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.departure-table thead tr { background: var(--charcoal); }
.departure-table thead th { padding: 13px 18px; text-align: left; font-size: 10.5px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold2); white-space: nowrap; }
.departure-table tbody tr { border-bottom: 1px solid var(--border-light); transition: background 0.15s; }
.departure-table tbody tr:nth-child(even) { background: var(--white); }
.departure-table tbody tr:hover { background: var(--cream2); }
.departure-table td { padding: 14px 18px; color: var(--dark); vertical-align: middle; }
.departure-table td.date-col { font-weight: 500; color: var(--mid); white-space: nowrap; font-size: 12.5px; }
.departure-table td.journey-col a { color: var(--charcoal); text-decoration: none; font-weight: 500; transition: color 0.2s; border-bottom: 1px solid var(--border); }
.departure-table td.journey-col a:hover { color: var(--gold); border-bottom-color: var(--gold); }
.departure-table td.notes-col { color: var(--muted); font-size: 11.5px; }
.departure-table td.price-col { color: var(--gold); font-weight: 600; white-space: nowrap; font-size: 12.5px; }
.tag-steam { display: inline-block; padding: 2px 8px; background: var(--cream2); border: 1px solid var(--gold-light); color: var(--gold); font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; vertical-align: middle; margin-left: 6px; }

/* ENQUIRY PROMPT */
.enquiry-prompt { background: var(--white); border: 1px solid var(--border); border-left: 3px solid var(--gold); padding: 22px 24px; margin-top: 8px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.enquiry-prompt p { font-size: 14px; color: var(--dark); line-height: 1.65; }
.enquiry-prompt p strong { color: var(--black); }

/* BUTTONS */
.btn-primary { background: var(--gold); color: #fff; padding: 13px 30px; font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; text-decoration: none; border: none; cursor: pointer; transition: all 0.25s; display: inline-block; white-space: nowrap; }
.btn-primary:hover { background: var(--gold2); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--charcoal); padding: 13px 30px; font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; text-decoration: none; border: 1px solid var(--charcoal); cursor: pointer; transition: all 0.25s; display: inline-block; }
.btn-outline:hover { background: var(--charcoal); color: #fff; }
.btn-outline--white {  border-color: rgba(255,255,255,0.7); color: #ffffff;}
.btn-outline--white:hover {background: rgba(255,255,255,0.15); border-color: #ffffff; color: #ffffff;}

/* SIDEBAR */
.sidebar { position: sticky; top: 100px; }
.sidebar-card { background: var(--white); border: 1px solid var(--border); padding: 28px 24px; margin-bottom: 20px; }
.sidebar-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 400; color: var(--charcoal); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.sidebar-card .enquiry-intro { font-size: 13px; color: var(--dark); line-height: 1.75; margin-bottom: 20px; }
.sidebar-phone { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 300; color: var(--gold); text-decoration: none; display: block; margin-bottom: 14px; letter-spacing: 0.02em; transition: color 0.2s; }
.sidebar-phone:hover { color: var(--gold2); }
.sidebar-card .btn-primary { width: 100%; text-align: center; margin-bottom: 12px; display: block; }
.sidebar-card .btn-outline { width: 100%; text-align: center; display: block; }

.sidebar-nav ul { list-style: none; }
.sidebar-nav ul li { border-bottom: 1px solid var(--border-light); }
.sidebar-nav ul li a { display: flex; justify-content: space-between; align-items: center; padding: 9px 0; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mid); text-decoration: none; transition: color 0.2s; }
.sidebar-nav ul li a:hover { color: var(--gold); }
.sidebar-nav ul li a::after { content: '›'; color: var(--gold-light); font-size: 14px; }
.sidebar-nav ul li a:hover::after { color: var(--gold); }
.sidebar-nav ul li a.current { color: var(--gold); font-weight: 600; }

/* MONTH LIST in sidebar */
.month-list { list-style: none; }
.month-list li { border-bottom: 1px solid var(--border-light); }
.month-list li a { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--dark); text-decoration: none; transition: color 0.2s; }
.month-list li a:hover { color: var(--gold); }
.month-list li a::after { content: '›'; color: var(--gold-light); font-size: 14px; }
.month-list li a:hover::after { color: var(--gold); }
.month-list li a.current { color: var(--gold); font-weight: 600; }
.month-list li a.current::after { color: var(--gold); }

/* SIDEBAR DOWNLOADS */
.sidebar-downloads { display: flex; flex-direction: column; gap: 10px; }
.sidebar-downloads a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--mid);
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-light);
  transition: color 0.2s;
}
.sidebar-downloads a:last-child { border-bottom: none; }
.sidebar-downloads a:hover { color: var(--gold); }
.sidebar-downloads .dl-icon { color: var(--gold); font-size: 16px; flex-shrink: 0; }

/* CTA STRIP */
.cta-strip { background: var(--charcoal); padding: 72px 48px; text-align: center; position: relative; overflow: hidden; }
.cta-strip::before { content: ''; position: absolute; inset: 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='%23ffffff' fill-opacity='0.015'%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/svg%3E"); pointer-events: none; }
.cta-strip h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem, 3.5vw, 3rem); font-weight: 300; color: var(--cream); margin-bottom: 10px; }
.cta-strip p { font-size: 13px; color: #9a9080; margin-bottom: 32px; }
.cta-phone { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 300; color: var(--gold2); text-decoration: none; display: block; margin-bottom: 28px; letter-spacing: 0.04em; transition: color 0.2s; }
.cta-phone:hover { color: var(--gold-light); }
.cta-strip .btn-outline { color: #c8bfb4; border-color: #555; }
.cta-strip .btn-outline:hover { background: #555; color: #fff; }

/* NEWSLETTER */
.newsletter-section { padding: 72px 48px; text-align: center; max-width: 640px; margin: 0 auto; }
.newsletter-section h2 { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 300; color: var(--charcoal); margin-bottom: 10px; }
.newsletter-section p { font-size: 14px; color: var(--dark); margin-bottom: 28px; line-height: 1.85; }
.newsletter-form { display: flex; max-width: 460px; margin: 0 auto; }
.newsletter-form input { flex: 1; background: var(--white); border: 1px solid var(--border); border-right: none; padding: 14px 20px; color: var(--dark); font-family: 'Montserrat', sans-serif; font-size: 12px; outline: none; transition: border-color 0.2s; }
.newsletter-form input::placeholder { color: var(--muted); }
.newsletter-form input:focus { border-color: var(--gold); }
.newsletter-form button { background: var(--gold); color: #fff; border: none; padding: 14px 24px; font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; cursor: pointer; transition: background 0.2s; }
.newsletter-form button:hover { background: var(--gold2); }

/* GOLD DIVIDER */
.gold-divider { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 36px; }
.gold-divider::before, .gold-divider::after { content: ''; width: 60px; height: 1px; background: var(--gold-light); }
.gold-divider span { color: var(--gold); font-size: 14px; }

/* FOOTER */
footer { background: var(--charcoal); border-top: 3px solid var(--gold); padding: 56px 48px 30px; }
.footer-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 44px; margin-bottom: 44px; }
.footer-brand img { height: 46px; margin-bottom: 16px; }
.footer-brand p { font-size: 13px; color: #c8bfb4; line-height: 1.85; max-width: 240px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a { width: 34px; height: 34px; border: 1px solid #555; display: flex; align-items: center; justify-content: center; color: #c8bfb4; text-decoration: none; font-size: 13px; transition: all 0.2s; }
.footer-social a:hover { border-color: var(--gold2); color: var(--gold2); }
.footer-col h4 { font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold2); margin-bottom: 18px; padding-bottom: 10px; border-bottom: 1px solid #444; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 13px; color: #c8bfb4; text-decoration: none; transition: color 0.2s; letter-spacing: 0.02em; }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom { max-width: 1100px; margin: 0 auto; padding-top: 24px; border-top: 1px solid #444; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; font-size: 12px; color: #9a9080; letter-spacing: 0.04em; }
.footer-bottom a { color: #9a9080; text-decoration: none; }
.footer-bottom a:hover { color: var(--gold2); }
.trust-logo { height: 50px; opacity: 0.7; filter: grayscale(1) brightness(2); }

/* SEASON LABELS */
.season-label {
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--mid);
  margin: 36px 0 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.season-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--mid);
  opacity: 0.6;
  display: inline-block;
}
.season-label:first-child { margin-top: 0; }

/* MONTH GRID */
.month-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 8px;
  margin-bottom: 8px;
}

/* MONTH CARDS */
.month-card {
  background: var(--white);
  border: 1px solid var(--border);
  text-decoration: none;
  display: block;
  transition: all 0.25s;
  overflow: hidden;
}
.month-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}
.month-card-header {
  background: var(--charcoal);
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.month-card-header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--white);
  margin: 0;
}
.month-card-header .year {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold2);
}
.month-card-body { padding: 20px 22px; }
.month-card-body p {
  font-size: 13px;
  color: var(--dark);
  line-height: 1.65;
  margin: 0 0 14px;
}
.month-card-link {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 8px;
}
.month-card-link::after {
  content: '→';
  transition: transform 0.2s;
}
.month-card:hover .month-card-link::after { transform: translateX(4px); }

/* YEAR SECTION HEADING */
.year-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 300;
  color: var(--charcoal);
  margin: 48px 0 4px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
}
.year-heading:first-child { margin-top: 0; }

/* INTRO LEAD BLOCKQUOTE */
.intro-lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 300;
  font-style: italic;
  color: var(--dark);
  line-height: 1.75;
  margin-bottom: 28px;
  padding-left: 20px;
  border-left: 3px solid var(--gold-light);
}

/* GOLD RULE DIVIDER */
.gold-rule { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 36px; }
.gold-rule::before, .gold-rule::after { content: ''; width: 60px; height: 1px; background: var(--gold-light); }
.gold-rule span { color: var(--gold); font-size: 14px; }

/* DINING CARDS CONTAINER */
.dining-cards { display: flex; flex-direction: column; gap: 3px; background: var(--border-light); margin-top: 40px; }

/* INDIVIDUAL DINING CARD */
.dining-card { background: var(--white); overflow: hidden; }

.dining-card-header {
  padding: 28px 32px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.dining-card-title h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.dining-card-title .dc-label {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}

.dining-card-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--charcoal);
  text-align: right;
  white-space: nowrap;
  flex-shrink: 0;
}

.dining-card-price span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark);
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  margin-bottom: 2px;
}

.dining-card-body {
  padding: 20px 32px 28px;
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 32px;
}

.dining-card-desc p { font-size: 14px; color: var(--dark); line-height: 1.85; margin-bottom: 12px; }
.dining-card-desc p:last-child { margin-bottom: 0; }
.dining-card-desc p em { font-style: italic; color: var(--muted); font-size: 14px; }
.dining-card-desc p strong { color: var(--dark); font-weight: 600; }
.dining-card-desc a { color: var(--gold); text-decoration: none; border-bottom: 1px solid var(--gold-light); }
.dining-card-desc a:hover { border-bottom-color: var(--gold); }

/* JOURNEY DETAILS BOX */
.journey-details {
  background: var(--cream2);
  border: 1px solid var(--border);
  padding: 20px 22px;
  align-self: start;
}

.journey-details h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
  letter-spacing: 0.04em;
}

.jd-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; font-size: 13px; }
.jd-row dt { color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; font-size: 13px; }
.jd-row dd { color: var(--dark); font-weight: 500; text-align: right; }
.jd-divider { border: none; border-top: 1px solid var(--border-light); margin: 12px 0; }

.departures-label { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mid); margin-bottom: 8px; display: block; }
.departures-dates { font-size: 12.5px; color: var(--charcoal); line-height: 1.8; margin-bottom: 12px; }
.departures-dates:last-child { margin-bottom: 0; }

/* MENU DOWNLOADS */
.menu-downloads { background: var(--white); border: 1px solid var(--border); padding: 24px 28px; margin: 28px 0; }
.menu-downloads h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 400; color: var(--charcoal); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid var(--border-light); }
.menu-links { display: flex; flex-wrap: wrap; gap: 10px; }
.menu-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  background: var(--cream2);
  border: 1px solid var(--border);
  color: var(--mid);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.2s;
}
.menu-link:hover { border-color: var(--gold); color: var(--gold); background: var(--cream); }
.menu-link .dl-icon { color: var(--gold); font-size: 13px; }

/* NOTICE BOX */
.notice { background: var(--cream2); border: 1px solid var(--border); padding: 16px 22px; margin-top: 32px; font-size: 13px; color: var(--mid); line-height: 1.75; }
.notice strong { color: var(--dark); }

/* NEWSLETTER PRIVACY LINE */
.newsletter-privacy { font-size: 11px; color: var(--muted); margin-top: 12px; }
.newsletter-privacy a { color: var(--muted); text-decoration: none; }
.newsletter-privacy a:hover { color: var(--gold); }

/* COMPANY BOX */
.company-box {
  background: var(--cream2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  padding: 22px 28px;
  margin-bottom: 32px;
  font-size: 13px;
  color: var(--dark);
  line-height: 1.8;
}
.company-box p { margin-bottom: 6px; }
.company-box p:last-child { margin-bottom: 0; }

/* PAGE HERO (text-only, no image) */
.page-hero {
  background: var(--charcoal);
  padding: 56px 48px 52px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 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='%23ffffff' fill-opacity='0.015'%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/svg%3E");
  pointer-events: none;
}
.page-hero-inner { max-width: 900px; margin: 0 auto; position: relative; z-index: 1; }
.page-hero-eyebrow { font-size: 10px; letter-spacing: 0.38em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 14px; display: flex; align-items: center; gap: 12px; }
.page-hero-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--gold-light); opacity: 0.7; }
.page-hero h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 300; color: var(--cream); line-height: 1.1; margin-bottom: 12px; }
.page-hero p { font-size: 13px; color: #ffffff; line-height: 1.8; max-width: 560px; }

/* LAST UPDATED BADGE */
.last-updated { display: inline-flex; align-items: center; gap: 8px; background: var(--cream2); border: 1px solid var(--border); padding: 8px 16px; font-size: 11px; color: var(--dark); letter-spacing: 0.06em; margin-bottom: 28px; }
.last-updated strong { color: var(--gold); }

/* CONDITIONS BODY */
.conditions-body { max-width: 100%; }
.conditions-body h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; font-weight: 300; color: var(--charcoal); margin: 36px 0 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.conditions-body h4:first-child { margin-top: 0; }
.conditions-body p { font-size: 13px; color: var(--mid); line-height: 1.9; margin-bottom: 14px; }
.conditions-body p strong { color: var(--dark); }
.conditions-body a { color: var(--gold); text-decoration: none; border-bottom: 1px solid var(--gold-light); transition: border-color 0.2s; }
.conditions-body a:hover { border-bottom-color: var(--gold); }
.conditions-body ul { margin: 10px 0 14px 24px; }
.conditions-body ul li { font-size: 13px; color: var(--mid); line-height: 1.85; margin-bottom: 6px; }
.conditions-body table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 12.5px; }
.conditions-body table td, .conditions-body table th { padding: 10px 14px; border: 1px solid var(--border); color: var(--mid); vertical-align: top; line-height: 1.7; }
.conditions-body table th { background: var(--cream2); color: var(--dark); font-weight: 500; }
.conditions-body table tr:nth-child(even) td { background: var(--cream); }
.conditions-body u { text-decoration: underline; }
.conditions-body i { font-style: italic; }

/* PAYMENT BOX */
.payment-box { background: var(--white); border: 1px solid var(--border); border-left: 3px solid var(--gold); padding: 28px 32px; margin: 28px 0; }
.payment-box h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 400; color: var(--charcoal); margin-bottom: 18px; padding-bottom: 12px; border-bottom: 1px solid var(--border-light); }
.payment-divider { border: none; border-top: 1px solid var(--border-light); margin: 18px 0; }
.payment-row { display: grid; grid-template-columns: 180px 1fr; gap: 8px 24px; margin-bottom: 10px; font-size: 13px; }
.payment-row dt { color: var(--muted); font-weight: 400; }
.payment-row dd { color: var(--dark); font-weight: 500; }

.excursion-list { display: flex; flex-direction: column; gap: 3px; background: var(--border-light); margin: 36px 0; }

.excursion-card {
  background: var(--white);
  display: grid;
  grid-template-columns: 280px 1fr;
  text-decoration: none;
  transition: all 0.3s;
  overflow: hidden;
  min-height: 200px;
}
.excursion-card:hover { background: var(--cream); }

.excursion-card-img-wrap { overflow: hidden; position: relative; }

.excursion-img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.excursion-card:hover .excursion-img { transform: scale(1.04); }

.excursion-img-placeholder {
  width: 100%; height: 100%; min-height: 200px;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; color: var(--gold-light);
  background: var(--cream2);
}

.excursion-card-body {
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--border-light);
  transition: border-color 0.3s;
}
.excursion-card:hover .excursion-card-body { border-left-color: var(--gold); }
.excursion-card-body h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 400; color: var(--charcoal); margin-bottom: 12px; line-height: 1.15; }
.excursion-card-body p { font-size: 14px; color: var(--dark); line-height: 1.75; margin-bottom: 20px; }

.excursion-label { font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; display: block; }

.excursion-link { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 600; display: inline-flex; align-items: center; gap: 8px; transition: gap 0.2s; }
.excursion-link::after { content: '→'; }
.excursion-card:hover .excursion-link { gap: 13px; }

/* INFO GRID */
.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  background: var(--border-light);
  margin: 28px 0;
}

.info-item {
  background: var(--white);
  padding: 24px 26px;
  transition: background 0.25s;
}
.info-item:hover { background: var(--cream); }
.info-item h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 400; color: var(--charcoal); margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.info-item h4 .info-icon { color: var(--gold); font-size: 16px; flex-shrink: 0; }
.info-item p { font-size: 13.5px; color: var(--dark); line-height: 1.8; }
.info-item p a { color: var(--gold); text-decoration: none; border-bottom: 1px solid var(--gold-light); }
.info-item p a:hover { border-bottom-color: var(--gold); }

.info-section { margin-bottom: 36px; }
.info-section h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 400; color: var(--charcoal);
  margin: 32px 0 14px; padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.info-section h3:first-child { margin-top: 0; }

/* SPECIAL REQUESTS TABLE */
.special-requests-table { width: 100%; border-collapse: collapse; margin-top: 20px; font-size: 13.5px; }
.special-requests-table th { background: var(--charcoal); color: var(--gold2); padding: 12px 18px; text-align: left; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500; }
.special-requests-table td { padding: 13px 18px; border-bottom: 1px solid var(--border-light); color: var(--dark); vertical-align: middle; line-height: 1.6; }
.special-requests-table tr:nth-child(even) td { background: var(--cream); }
.special-requests-table tr:hover td { background: var(--cream2); }
.special-requests-table td strong { color: var(--charcoal); font-weight: 600; }
.special-requests-table td.price { color: var(--gold); font-weight: 600; white-space: nowrap; }

/* CHARTER BOX */
.charter-box { background: var(--charcoal); padding: 32px 36px; margin-top: 28px; }
.charter-box h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; font-weight: 300; color: var(--cream); margin-bottom: 12px; }
.charter-box p { font-size: 14px; color: #ffffff; line-height: 1.85; margin-bottom: 16px; }
.charter-box p:last-child { margin-bottom: 0; }
.charter-box a { color: var(--gold2); border-bottom: 1px solid rgba(201,160,92,0.4); text-decoration: none; }
.charter-box a:hover { color: var(--gold-light); }

/* SEATING INFO BOX */
.seating-info {
  background: var(--cream2); border: 1px solid var(--border);
  border-left: 3px solid var(--gold); padding: 22px 28px; margin: 24px 0;
}
.seating-info p { font-size: 14px; color: var(--dark); line-height: 1.85; margin-bottom: 10px; }
.seating-info p:last-child { margin-bottom: 0; }

/* STAFF GRID */
.staff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 24px 0; }
.staff-card { background: var(--white); border: 1px solid var(--border); padding: 24px 22px; transition: border-color 0.3s; }
.staff-card:hover { border-color: var(--gold); }
.staff-card .staff-icon { font-size: 22px; color: var(--gold); margin-bottom: 12px; }
.staff-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 400; color: var(--charcoal); margin-bottom: 8px; }
.staff-card p { font-size: 13px; color: var(--mid); line-height: 1.75; }

/* CARRIAGE LAYOUT LINK */
.carriage-layout-link {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  background: var(--white); border: 1px solid var(--border);
  padding: 28px 32px; text-decoration: none; transition: all 0.3s; margin-top: 28px;
}
.carriage-layout-link:hover { border-color: var(--gold); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.carriage-layout-link img { max-width: 100%; height: auto; flex: 1; }
.carriage-layout-link .cll-text p:first-child { font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.carriage-layout-link .cll-text h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 400; color: var(--charcoal); }
.carriage-layout-link .cll-arrow { font-size: 22px; color: var(--gold-light); flex-shrink: 0; transition: color 0.2s; }
.carriage-layout-link:hover .cll-arrow { color: var(--gold); }

/* INTRO SECTION */
.intro-section { margin-bottom: 56px; }

/* CONTENT SECTIONS */
.content-section { margin-bottom: 52px; }
.content-section h2 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 300; color: var(--charcoal); margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }

/* VIDEO EMBED */
.video-wrap {
  position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;
  margin: 36px 0; border: 1px solid var(--border);
}
.video-wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }

/* PHOTO STRIP */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin: 40px 0;
  background: var(--border-light);
}
.photo-strip figure { margin: 0; overflow: hidden; position: relative; }
.photo-strip figure img { width: 100%; height: 220px; object-fit: cover; display: block; transition: transform 0.6s ease; }
.photo-strip figure:hover img { transform: scale(1.04); }
.photo-strip figcaption { position: absolute; bottom: 0; left: 0; right: 0; background: rgba(30,30,30,0.6); color: #fff; font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; padding: 8px 12px; }

/* EXCURSION GRID (compact version on main page) */
.excursion-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 28px 0;
}
.excursion-grid .excursion-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 24px 22px;
  text-decoration: none;
  display: block;
  transition: all 0.25s;
  grid-template-columns: unset;
  min-height: unset;
}
.excursion-grid .excursion-card:hover { border-color: var(--gold); background: var(--cream); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.06); }
.ex-label { font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; display: block; }
.excursion-grid .excursion-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 400; color: var(--charcoal); margin-bottom: 8px; }
.excursion-grid .excursion-card p { font-size: 13px; color: var(--dark); line-height: 1.75; margin: 0; }

/* QUICK LINKS GRID */
.quick-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  margin: 40px 0;
}
.quick-link-card {
  background: var(--white);
  padding: 28px 24px;
  text-decoration: none;
  display: flex; flex-direction: column; justify-content: space-between;
  transition: background 0.25s;
  border-bottom: 3px solid transparent;
}
.quick-link-card:hover { background: var(--cream); border-bottom-color: var(--gold); }
.ql-icon { font-size: 22px; color: var(--gold-light); margin-bottom: 12px; display: block; }
.quick-link-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 400; color: var(--charcoal); margin-bottom: 8px; }
.quick-link-card p { font-size: 13px; color: var(--dark); line-height: 1.75; margin-bottom: 16px; }
.ql-arrow { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); font-weight: 600; }

/* FULL-WIDTH SECTION (features band) */
.full-width-section {
  background: var(--cream2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 48px;
}
.full-width-inner { max-width: 1100px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-eyebrow {
  font-size: 10px; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
  display: flex; align-items: center; justify-content: center; gap: 12px;
}
.section-eyebrow::before, .section-eyebrow::after { content: ''; width: 36px; height: 1px; background: var(--gold-light); }
.section-header h2 { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 300; color: var(--charcoal); margin-bottom: 12px; }
.section-header p { font-size: 13px; color: var(--muted); line-height: 1.85; max-width: 560px; margin: 0 auto; }

/* FEATURES GRID */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card { background: var(--white); border: 1px solid var(--border); padding: 32px 28px; transition: all 0.3s; }
.feature-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,0.06); }
.feature-icon { font-size: 20px; color: var(--gold); margin-bottom: 14px; }
.feature-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 400; color: var(--charcoal); margin-bottom: 10px; }
.feature-card p { font-size: 12px; color: var(--muted); line-height: 1.8; }

/* DOWNLOAD LINK (sidebar) */
.download-link {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
  text-decoration: none; color: var(--mid);
  font-size: 11.5px; transition: color 0.2s;
}
.download-link:last-child { border-bottom: none; }
.download-link:hover { color: var(--gold); }

/* BTN GOLD OUTLINE */
.btn-gold-outline {
  background: transparent; color: var(--gold);
  padding: 12px 28px;
  font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  text-decoration: none; border: 1px solid var(--gold); cursor: pointer;
  transition: all 0.25s; display: inline-block;
}
.btn-gold-outline:hover { background: var(--gold); color: var(--white); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .page-wrapper { grid-template-columns: 1fr; gap: 40px; }
  .sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .month-grid { grid-template-columns: repeat(2, 1fr); }
  .excursion-card { grid-template-columns: 220px 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .photo-strip { grid-template-columns: 1fr; }
  .photo-strip figure img { height: 200px; }
  .full-width-section { padding: 48px 24px; }
}
@media (max-width: 768px) {
  .topbar { padding: 7px 16px; gap: 8px; font-size: 10px; }
  .topbar a:not(.phone) { display: none; }
  .topbar .div { display: none; }
  nav.main-nav { top: 34px; padding: 0 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-content { padding: 0 24px 44px; }
  .page-hero { padding: 40px 20px 36px; }
  .payment-row { grid-template-columns: 1fr; gap: 2px; }
  .breadcrumb, .month-nav { padding-left: 20px; padding-right: 20px; }
  .page-wrapper { padding: 40px 20px; }
  .cta-strip, .newsletter-section { padding-left: 20px; padding-right: 20px; }
   footer { padding-left: 20px; padding-right: 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input { border-right: 1px solid var(--border); border-bottom: none; }
  .departure-table thead th:nth-child(3) { display: none; }
  .departure-table td.notes-col { display: none; }
  .enquiry-prompt { flex-direction: column; align-items: flex-start; }
  .month-nav-title { display: none; }
  .dining-card-body { grid-template-columns: 1fr; padding: 16px 20px 24px; }
  .dining-card-header { padding: 20px 20px 0; flex-direction: column; gap: 8px; }
  .dining-card-price { text-align: left; }
  .menu-links { flex-direction: column; }
  .info-grid { grid-template-columns: 1fr; }
  .staff-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .excursion-card { grid-template-columns: 1fr; }
  .excursion-card-img-wrap { height: 200px; }
  .excursion-card-body { border-left: none; border-top: 1px solid var(--border-light); padding: 24px 22px; }
  .excursion-grid { grid-template-columns: 1fr; }
  .quick-links-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
}
@media (max-width: 560px) {
  .month-grid { grid-template-columns: 1fr; }
}