/*
Theme Name:  Cunard Queen Elizabeth
Theme URI:   https://cunardqueenelizabeth.org/
Author:      Deluxe Cruises
Author URI:  https://deluxecruises.com/
Description: Elegant, fully responsive WordPress theme for cunardqueenelizabeth.org — Cunard cruise specialists. Deep navy, ivory and gold palette. Rich ship descriptions for Queen Elizabeth, Queen Mary 2, Queen Anne and Queen Victoria. Mobile-first, PC-optimised.
Version:     2.1.0
License:     GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cunard-qe
Tags:        custom-menu, featured-images, post-thumbnails, responsive-layout, two-columns, right-sidebar, custom-logo, blog, travel
*/

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --navy:        #0D1B2A;
  --navy-mid:    #1A2E44;
  --navy-light:  #243C57;
  --ivory:       #F8F5EE;
  --ivory-dark:  #EDE9DF;
  --gold:        #B8963E;
  --gold-light:  #D4AF6A;
  --white:       #FFFFFF;
  --text:        #1D1D1B;
  --text-mid:    #3A3A38;
  --text-light:  #6B6B68;
  --radius:      4px;
  --shadow-sm:   0 2px 12px rgba(13,27,42,.08);
  --shadow-md:   0 6px 28px rgba(13,27,42,.14);
  --shadow-lg:   0 12px 48px rgba(13,27,42,.2);
  --trans:       .22s ease;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; font-size: 16px; }
body {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text);
  background: var(--ivory);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--trans); }
a:hover { color: var(--gold-light); text-decoration: underline; }
ul, ol { padding-left: 1.5rem; }
p { margin-bottom: 1.2rem; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: .02em;
  color: var(--navy);
  margin-bottom: .6rem;
}
h1 { font-size: clamp(1.9rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2.1rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h4 { font-size: 1rem; }

/* ============================================================
   UTILITIES
   ============================================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 clamp(1rem, 5%, 3rem); }
.text-center { text-align: center; }

.eyebrow {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .8rem;
}
.gold-rule {
  display: block;
  width: 56px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 1rem auto;
}
.gold-rule.left { margin-left: 0; }
.section-intro {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 640px;
  margin: .75rem auto 0;
}
.section-intro.left { margin-left: 0; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  font-family: 'Lato', sans-serif;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .82rem 1.9rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--trans), transform var(--trans), color var(--trans), border-color var(--trans);
}
.btn:hover { transform: translateY(-2px); text-decoration: none; }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-light); color: var(--navy); }
.btn-outline-white { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,.45); }
.btn-outline-white:hover { border-color: var(--gold); color: var(--gold-light); }
.btn-navy { background: var(--navy); color: var(--gold-light); }
.btn-navy:hover { background: var(--navy-mid); color: var(--white); }
.btn-sm { font-size: .68rem; padding: .6rem 1.3rem; }

/* ============================================================
   SITE HEADER — sticky
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: var(--navy);
  border-bottom: 2px solid var(--gold);
  box-shadow: 0 2px 24px rgba(0,0,0,.35);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 5%, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 1rem;
}

/* Logo */
.site-branding { flex-shrink: 0; }
.site-branding a { text-decoration: none; display: flex; flex-direction: column; }
.site-branding a:hover { text-decoration: none; }
.site-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: .1em;
}
.site-tagline {
  font-family: 'Lato', sans-serif;
  font-size: .55rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
  margin-top: 2px;
}

/* Desktop nav */
.main-navigation { display: flex; align-items: center; }
.main-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}
.main-navigation ul li a {
  font-family: 'Lato', sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
  text-decoration: none;
  padding: 0 .75rem;
  height: 68px;
  display: flex;
  align-items: center;
  border-bottom: 2px solid transparent;
  transition: color var(--trans), border-color var(--trans);
  white-space: nowrap;
}
.main-navigation ul li a:hover,
.main-navigation ul li.current-menu-item > a,
.main-navigation ul li.current_page_item > a {
  color: var(--gold-light);
  border-bottom-color: var(--gold);
  text-decoration: none;
}
.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: .42rem 1.1rem !important;
  border-radius: var(--radius) !important;
  height: auto !important;
  border-bottom: none !important;
  margin-left: .6rem !important;
  font-size: .66rem !important;
}
.nav-cta:hover {
  background: var(--gold-light) !important;
  color: var(--navy) !important;
  text-decoration: none !important;
  transform: none !important;
}

/* Hamburger */
.menu-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(255,255,255,.3);
  color: var(--white);
  padding: .38rem .75rem;
  cursor: pointer;
  font-size: .85rem;
  border-radius: var(--radius);
  line-height: 1;
  transition: border-color var(--trans);
  align-items: center;
  gap: .4rem;
}
.menu-toggle:hover { border-color: var(--gold); color: var(--gold-light); }

/* ============================================================
   YEAR NAV BAR
   ============================================================ */
.year-nav {
  background: var(--ivory-dark);
  border-bottom: 1px solid rgba(184,150,62,.18);
}
.year-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 5%, 3rem);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.year-nav-label {
  font-family: 'Lato', sans-serif;
  font-size: .6rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--text-light);
  padding-right: 1.5rem;
  white-space: nowrap;
}
.year-nav a {
  font-family: 'Playfair Display', serif;
  font-size: .92rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  padding: .95rem 1.6rem;
  border-bottom: 3px solid transparent;
  transition: color var(--trans), border-color var(--trans);
  white-space: nowrap;
}
.year-nav a:hover { color: var(--gold); border-bottom-color: var(--gold); text-decoration: none; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-mid) 55%, var(--navy-light) 100%);
  padding: clamp(60px, 10vw, 110px) clamp(1rem, 5%, 3rem) clamp(55px, 9vw, 100px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before, .hero::after {
  content: '';
  position: absolute;
  border: 1px solid rgba(184,150,62,.12);
  border-radius: 50%;
  pointer-events: none;
}
.hero::before { width: clamp(200px,40vw,420px); height: clamp(200px,40vw,420px); top: -30%; left: -10%; }
.hero::after  { width: clamp(180px,35vw,380px); height: clamp(180px,35vw,380px); bottom: -25%; right: -8%; }
.hero h1 { color: var(--white); max-width: 880px; margin: 0 auto .4rem; }
.hero h1 em { display: block; font-style: italic; font-weight: 400; color: var(--gold-light); font-size: .82em; margin-top: .2rem; }
.hero-divider { width: 90px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); margin: 1.4rem auto; }
.hero-desc { font-size: clamp(.95rem, 2vw, 1.1rem); color: rgba(255,255,255,.68); max-width: 660px; margin: 0 auto 2.5rem; font-weight: 300; }
.hero-btns { display: flex; gap: .85rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   SECTION WRAPPERS
   ============================================================ */
.section { padding: clamp(50px, 8vw, 90px) 0; }
.section-hdr { margin-bottom: clamp(1.5rem, 3vw, 2.5rem); }
.section-hdr.center { text-align: center; }
.section-hdr.center .section-intro { margin-left: auto; margin-right: auto; }

/* ============================================================
   TWO-COLUMN LAYOUT
   ============================================================ */
.content-wrap {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: start;
}

/* ============================================================
   POST CARDS
   ============================================================ */
.posts-list { display: flex; flex-direction: column; gap: 1.4rem; }
.post-card {
  background: var(--white);
  border: 1px solid var(--ivory-dark);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.6rem 1.8rem;
  transition: box-shadow var(--trans);
}
.post-card:hover { box-shadow: var(--shadow-md); }
.post-meta {
  font-family: 'Lato', sans-serif;
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .55rem;
}
.post-meta a { color: var(--gold); }
.post-meta a:hover { color: var(--navy); }
.post-card h2, .post-card h3 { font-size: 1.08rem; margin-bottom: .5rem; }
.post-card h2 a, .post-card h3 a { color: var(--navy); }
.post-card h2 a:hover, .post-card h3 a:hover { color: var(--gold); text-decoration: none; }
.post-card .excerpt { font-size: .9rem; color: var(--text-mid); margin-bottom: .9rem; }
.read-more {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-family: 'Lato', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
}
.read-more::after { content: '\2192'; }
.read-more:hover { color: var(--navy); text-decoration: none; }

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination { display: flex; flex-wrap: wrap; gap: .4rem; padding: 1.8rem 0 .5rem; }
.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 .6rem;
  border: 1px solid var(--ivory-dark);
  border-radius: var(--radius);
  font-size: .84rem;
  color: var(--navy);
  text-decoration: none;
  transition: background var(--trans), color var(--trans);
}
.pagination .page-numbers:hover { background: var(--navy); color: var(--gold-light); border-color: var(--navy); text-decoration: none; }
.pagination .page-numbers.current { background: var(--navy); color: var(--gold-light); border-color: var(--navy); }
.pagination .page-numbers.next,
.pagination .page-numbers.prev { padding: 0 1rem; font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; }

/* ============================================================
   SIDEBAR WIDGETS
   ============================================================ */
.widget-area { display: flex; flex-direction: column; gap: 1.3rem; }
.widget { background: var(--white); border: 1px solid var(--ivory-dark); border-radius: var(--radius); overflow: hidden; }
.widget-title {
  background: var(--navy);
  padding: .7rem 1.2rem;
  font-family: 'Lato', sans-serif;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}
.widget ul { list-style: none; padding: 0; margin: 0; }
.widget ul li { border-bottom: 1px solid var(--ivory-dark); }
.widget ul li:last-child { border-bottom: none; }
.widget ul li a {
  display: block;
  padding: .62rem 1.2rem;
  font-size: .84rem;
  color: var(--text-mid);
  text-decoration: none;
  transition: background var(--trans), color var(--trans);
}
.widget ul li a:hover { background: rgba(184,150,62,.06); color: var(--gold); text-decoration: none; }
.widget p { padding: .9rem 1.2rem; font-size: .86rem; color: var(--text-mid); margin: 0; }

/* ============================================================
   FLEET / SHIP CARDS
   ============================================================ */
.fleet-section { background: var(--white); }
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.6rem;
  margin-top: 2rem;
}
.ship-card {
  background: var(--ivory);
  border: 1px solid var(--ivory-dark);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--trans), transform var(--trans);
}
.ship-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.ship-banner {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  padding: 2rem 1.5rem 1.5rem;
  position: relative;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.ship-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Lato', sans-serif;
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: .22rem .65rem;
  border-radius: var(--radius);
}
.ship-banner h3 { font-size: 1.2rem; color: var(--white); margin: 0; }
.ship-banner .ship-sub { font-family: 'Lato', sans-serif; font-size: .72rem; color: rgba(255,255,255,.55); margin-top: .25rem; }
.ship-body { padding: 1.4rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.ship-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem .8rem;
  margin-bottom: 1.1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--ivory-dark);
}
.stat-item { display: flex; flex-direction: column; }
.stat-label { font-family: 'Lato', sans-serif; font-size: .58rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: .1rem; }
.stat-value { font-family: 'Playfair Display', serif; font-size: .92rem; color: var(--navy); font-weight: 600; }
.ship-desc { font-size: .88rem; color: var(--text-mid); line-height: 1.7; flex: 1; margin-bottom: 1.2rem; }
.ship-features { list-style: none; padding: 0; margin-bottom: 1.3rem; }
.ship-features li {
  font-size: .82rem;
  color: var(--text-mid);
  padding: .28rem 0;
  border-bottom: 1px solid var(--ivory-dark);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.ship-features li:last-child { border-bottom: none; }
.ship-features li::before { content: '\2736'; color: var(--gold); font-size: .6rem; flex-shrink: 0; }

/* ============================================================
   ITINERARY YEAR CARDS
   ============================================================ */
.itinerary-section { background: var(--ivory); }
.year-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
  margin-top: 2rem;
}
.year-card {
  background: var(--white);
  border: 1px solid var(--ivory-dark);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--trans), transform var(--trans);
}
.year-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.year-card-top {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  padding: 1.4rem;
  position: relative;
}
.year-pill {
  position: absolute;
  top: .9rem;
  right: .9rem;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Lato', sans-serif;
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: .18rem .55rem;
  border-radius: var(--radius);
}
.year-card-top h3 { font-size: 1rem; color: var(--white); margin: 0; }
.year-card-top p { font-size: .72rem; color: rgba(255,255,255,.55); margin: .2rem 0 0; }
.year-card-body { padding: 1.3rem; }
.year-card-body p { font-size: .86rem; color: var(--text-mid); margin-bottom: 1rem; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--navy-mid);
  border-top: 1px solid rgba(184,150,62,.18);
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1rem, 5%, 3rem);
}
.trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
}
.trust-item { text-align: center; }
.trust-icon { font-size: 1.5rem; display: block; margin-bottom: .4rem; }
.trust-title { font-family: 'Playfair Display', serif; font-size: .9rem; color: var(--gold-light); display: block; margin-bottom: .2rem; }
.trust-desc { font-family: 'Lato', sans-serif; font-size: .7rem; color: rgba(255,255,255,.48); line-height: 1.5; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section { background: var(--navy); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.why-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(184,150,62,.18);
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem;
  text-align: center;
  transition: background var(--trans);
}
.why-card:hover { background: rgba(184,150,62,.08); }
.why-icon { font-size: 2rem; display: block; margin-bottom: .9rem; }
.why-card h4 { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--gold-light); margin-bottom: .6rem; }
.why-card p { font-size: .84rem; color: rgba(255,255,255,.55); line-height: 1.65; margin: 0; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: linear-gradient(140deg, var(--navy), var(--navy-mid));
  padding: clamp(55px, 8vw, 90px) clamp(1rem, 5%, 3rem);
  text-align: center;
}
.cta-band h2 { color: var(--white); max-width: 680px; margin: 0 auto .9rem; }
.cta-band p { color: rgba(255,255,255,.62); max-width: 540px; margin: 0 auto 2.2rem; }
.cta-btns { display: flex; gap: .85rem; justify-content: center; flex-wrap: wrap; }
.cta-contacts {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.cta-contact { text-align: center; }
.cta-label { font-family: 'Lato', sans-serif; font-size: .6rem; letter-spacing: .25em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: .35rem; }
.cta-contact a { font-family: 'Playfair Display', serif; font-size: .98rem; color: var(--white); }
.cta-contact a:hover { color: var(--gold-light); text-decoration: none; }

/* ============================================================
   SINGLE POST / PAGE
   ============================================================ */
.single-wrap { max-width: 860px; margin: 0 auto; padding: clamp(40px, 6vw, 70px) clamp(1rem, 5%, 3rem); }
.entry-header { margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--ivory-dark); }
.entry-header h1 { font-size: clamp(1.5rem, 3.5vw, 2.4rem); color: var(--navy); }
.entry-meta { font-family: 'Lato', sans-serif; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: .8rem; }
.entry-meta a { color: var(--gold); }
.entry-content { color: var(--text-mid); }
.entry-content h2 { font-size: 1.45rem; color: var(--navy); margin: 2rem 0 .7rem; }
.entry-content h3 { font-size: 1.15rem; color: var(--navy-mid); margin: 1.5rem 0 .5rem; }
.entry-content p { margin-bottom: 1.2rem; }
.entry-content a { color: var(--gold); }
.entry-content a:hover { color: var(--navy); }
.entry-content ul, .entry-content ol { margin-bottom: 1.2rem; }
.entry-content li { margin-bottom: .35rem; }
.entry-content table { width: 100%; border-collapse: collapse; margin-bottom: 1.5rem; font-size: .88rem; }
.entry-content table th { background: var(--navy); color: var(--gold-light); padding: .6rem 1rem; text-align: left; font-family: 'Lato', sans-serif; font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; }
.entry-content table td { padding: .6rem 1rem; border-bottom: 1px solid var(--ivory-dark); color: var(--text-mid); }
.entry-content table tr:nth-child(even) td { background: rgba(248,245,238,.6); }
.entry-content table td a { color: var(--gold); }
.entry-content blockquote { border-left: 3px solid var(--gold); padding: 1rem 1.5rem; margin: 1.5rem 0; background: var(--white); font-style: italic; color: var(--text-mid); }

/* ============================================================
   SITE FOOTER
   ============================================================ */
.site-footer { background: #070E18; padding: clamp(40px, 6vw, 60px) clamp(1rem, 5%, 3rem) clamp(20px, 3vw, 30px); }
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
  margin-bottom: 1.8rem;
}
.footer-col h4 { font-family: 'Lato', sans-serif; font-size: .6rem; font-weight: 700; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.1rem; }
.footer-col p { font-size: .82rem; color: rgba(255,255,255,.42); line-height: 1.7; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: .45rem; }
.footer-col ul li a { font-size: .82rem; color: rgba(255,255,255,.48); text-decoration: none; transition: color var(--trans); }
.footer-col ul li a:hover { color: var(--gold-light); text-decoration: none; }
.footer-contact-link { display: block; font-size: .82rem; color: var(--gold-light); text-decoration: none; margin-bottom: .45rem; transition: color var(--trans); }
.footer-contact-link:hover { color: var(--white); text-decoration: none; }
.footer-bottom { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: .72rem; color: rgba(255,255,255,.22); }
.footer-bottom a { color: rgba(255,255,255,.32); font-size: .72rem; text-decoration: none; }
.footer-bottom a:hover { color: var(--gold); text-decoration: none; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: .95rem; color: var(--gold-light); letter-spacing: .1em; }

/* ============================================================
   RESPONSIVE — Tablet (max 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .main-navigation ul li a { padding: 0 .55rem; font-size: .64rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   RESPONSIVE — Mobile (max 768px)
   ============================================================ */
@media (max-width: 768px) {
  /* Hamburger visible */
  .menu-toggle { display: flex; }

  /* Nav dropdown */
  .main-navigation ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--navy);
    border-top: 1px solid rgba(255,255,255,.08);
    padding: .5rem 0 1rem;
    box-shadow: 0 8px 24px rgba(0,0,0,.35);
    z-index: 9998;
  }
  .main-navigation ul.toggled { display: flex; }
  .main-navigation ul li { width: 100%; }
  .main-navigation ul li a {
    height: auto;
    padding: .75rem clamp(1rem, 5%, 3rem);
    border-bottom: none;
    border-left: 3px solid transparent;
    font-size: .75rem;
  }
  .main-navigation ul li a:hover,
  .main-navigation ul li.current-menu-item > a {
    border-left-color: var(--gold);
    border-bottom: none;
  }
  .nav-cta {
    margin: 1rem clamp(1rem, 5%, 3rem) 0 !important;
    display: inline-flex !important;
    height: auto !important;
    width: auto !important;
  }

  /* Year nav scrollable */
  .year-nav-inner {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .year-nav-inner::-webkit-scrollbar { display: none; }
  .year-nav-label { display: none; }

  /* Hero */
  .hero { padding: 55px clamp(1rem, 5%, 3rem) 50px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns .btn { width: 100%; max-width: 320px; }

  /* Two-column layout stacks */
  .content-wrap { grid-template-columns: 1fr; }

  /* Trust bar */
  .trust-inner { grid-template-columns: 1fr 1fr; }

  /* CTA contacts */
  .cta-contacts { gap: 1.5rem; }

  /* Why grid */
  .why-grid { grid-template-columns: 1fr; }

  /* Fleet grid */
  .fleet-grid { grid-template-columns: 1fr; }

  /* Year cards */
  .year-cards { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   RESPONSIVE — Small mobile (max 480px)
   ============================================================ */
@media (max-width: 480px) {
  .trust-inner { grid-template-columns: 1fr; }
  .cta-contacts { flex-direction: column; align-items: center; gap: 1.2rem; }
  .year-nav a { padding: .85rem 1.1rem; font-size: .82rem; }
  .ship-stats { grid-template-columns: 1fr; }
}

/* ============================================================
   RESPONSIVE — Large screens (min 1400px)
   ============================================================ */
@media (min-width: 1400px) {
  .container { max-width: 1320px; }
}
