/*
Theme Name: CruiseShip Modern
Theme URI: https://cruiseship.net/
Author: OpenAI
Description: Custom WordPress theme for CruiseShip.net with a modern editorial homepage, category-driven sections, About page, and Get in Touch page.
Version: 3.5.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GPL-2.0-or-later
Text Domain: cruiseship-modern
*/

:root{
  --navy:#072a57;
  --navy-2:#0c3f78;
  --teal:#1bc7c8;
  --cyan:#7cecf4;
  --blue:#1d7fdd;
  --green:#0aa56a;
  --orange:#ff7a1a;
  --red:#ff5d61;
  --purple:#8b58d8;
  --text:#0d2345;
  --muted:#5f6f86;
  --line:#dbe7f2;
  --soft:#f4f9ff;
  --soft-2:#eef6ff;
  --white:#fff;
  --radius:22px;
  --shadow:0 20px 50px rgba(7,42,87,.10);
  --shadow-sm:0 8px 24px rgba(7,42,87,.08);
  --container:min(1200px, calc(100% - 40px));
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--text);
  background:#fff;
  font-family:Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size:16px;
  line-height:1.6;
}
a{text-decoration:none;color:inherit}
img{max-width:100%;height:auto;display:block}
svg{display:block}
input,button,textarea{font:inherit}
button{cursor:pointer}
.screen-reader-text{position:absolute;left:-9999px}
.container{width:var(--container);margin:0 auto}
.site-main{display:block}

body.admin-bar .site-header{top:32px}
.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--line);
}
.header-inner{
  min-height:86px;
  display:flex;
  align-items:center;
  gap:28px;
}
.brand{
  display:flex;
  align-items:center;
  gap:14px;
  margin-right:auto;
  min-width:0;
}
.custom-logo-link img,
.custom-logo{
  width:auto;
  max-height:64px;
}
.brand-mark{
  width:48px;
  height:48px;
  border-radius:14px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,#eaf7ff,#d8f5ff);
  color:var(--navy);
}
.brand-text{line-height:1}
.brand-name{
  margin:0;
  font-family:Georgia, serif;
  font-size:30px;
  font-weight:700;
  letter-spacing:-.03em;
  color:var(--navy);
}
.brand-tag{
  display:block;
  margin-top:6px;
  color:var(--muted);
  font-size:10px;
  text-transform:uppercase;
  letter-spacing:.15em;
  font-weight:700;
}
.main-nav{display:flex;align-items:center}
.primary-menu{
  display:flex;
  align-items:center;
  gap:24px;
  list-style:none;
  margin:0;
  padding:0;
}
.primary-menu li{margin:0}
.primary-menu a{
  display:block;
  padding:31px 0 27px;
  border-bottom:3px solid transparent;
  font-size:15px;
  font-weight:700;
  color:var(--text);
}
.primary-menu .current-menu-item>a,
.primary-menu .current-menu-parent>a,
.primary-menu .current_page_item>a,
.primary-menu .current-category-ancestor>a,
.primary-menu a:hover{
  color:var(--blue);
  border-bottom-color:var(--blue);
}
.header-actions{display:flex;align-items:center;gap:14px}
.header-actions a{
  width:38px;
  height:38px;
  border-radius:999px;
  display:grid;
  place-items:center;
  color:var(--navy);
}
.header-actions a:hover{background:var(--soft)}
.mobile-toggle{
  display:none;
  border:0;
  background:var(--navy);
  color:#fff;
  padding:12px 14px;
  border-radius:12px;
  font-weight:700;
}

.hero{
  position:relative;
  overflow:hidden;
  color:#fff;
  background:
    linear-gradient(90deg, rgba(7,42,87,.82) 0%, rgba(7,42,87,.56) 44%, rgba(7,42,87,.16) 100%),
    var(--hero-image, linear-gradient(135deg,#1d4c82,#79d5ef));
  background-size:cover;
  background-position:center;
}
.hero:after{
  content:"";
  position:absolute;
  inset:auto 0 0 0;
  height:110px;
  background:linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,.22));
}
.hero-content{
  position:relative;
  z-index:1;
  max-width:680px;
  padding:92px 0 90px;
}
.hero-kicker{
  margin:0 0 14px;
  font-size:13px;
  font-weight:600;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:rgba(255,255,255,.86);
}
.hero h1{
  margin:0 0 18px;
  font-size:72px;
  line-height:.98;
  letter-spacing:-.05em;
  font-weight:800;
}
.hero h1 span{color:var(--cyan)}
.hero p{
  margin:0 0 28px;
  max-width:580px;
  font-size:20px;
  line-height:1.5;
  color:rgba(255,255,255,.94);
  font-weight:500;
}
.hero-search{
  display:flex;
  align-items:center;
  gap:10px;
  max-width:650px;
  padding:10px;
  border-radius:14px;
  background:#fff;
  box-shadow:var(--shadow);
}
.hero-search-icon{width:22px;height:22px;color:var(--text);margin-left:10px;flex:0 0 auto}
.hero-search input{
  flex:1;
  min-width:0;
  border:0;
  outline:0;
  padding:14px 10px;
  color:var(--text);
  background:transparent;
  font-size:16px;
}
.hero-search button,
.btn{
  border:0;
  border-radius:12px;
  background:var(--navy);
  color:#fff;
  padding:15px 24px;
  font-weight:700;
}
.btn:hover,
.hero-search button:hover{background:var(--navy-2)}
.quick-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:22px;
}
.quick-card{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:190px;
  padding:16px 20px;
  background:#fff;
  color:var(--navy);
  border-radius:14px;
  box-shadow:var(--shadow-sm);
}
.quick-card strong{display:block;font-size:16px;font-weight:700;line-height:1.25}
.quick-card.primary{background:var(--navy);color:#fff}
.quick-card.teal{background:var(--teal);color:#fff}
.quick-icon{width:24px;height:24px;flex:0 0 auto}
.trust-line{
  display:flex;
  align-items:center;
  gap:8px;
  margin-top:20px;
  color:rgba(255,255,255,.94);
  font-weight:600;
}
.trust-line svg{width:18px;height:18px;flex:0 0 auto}

.start-section{
  padding:34px 0 54px;
  background:linear-gradient(180deg,#fff 0%, var(--soft-2) 100%);
}
.section-heading{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  margin:0 0 24px;
  font-size:28px;
  line-height:1.2;
  letter-spacing:-.02em;
  font-weight:800;
  text-align:center;
}
.section-heading svg{width:28px;height:28px;flex:0 0 auto;color:var(--navy)}
.start-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
.start-card,
.surface-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow-sm);
}
.start-card{
  display:flex;
  align-items:center;
  gap:20px;
  padding:28px;
}
.start-card:hover{transform:translateY(-2px)}
.start-card-icon{
  width:74px;
  height:74px;
  border-radius:999px;
  display:grid;
  place-items:center;
  color:#fff;
  flex:0 0 auto;
}
.start-card-icon.teal{background:var(--teal)}
.start-card-icon.blue{background:var(--blue)}
.start-card-icon.red{background:var(--red)}
.start-card-icon svg{width:34px;height:34px}
.start-card-content h3{
  margin:0 0 4px;
  font-size:20px;
  line-height:1.15;
  font-weight:700;
}
.start-card-content p{
  margin:0;
  color:var(--muted);
  font-size:15px;
  line-height:1.45;
  font-weight:500;
}
.start-arrow{margin-left:auto;color:var(--navy);width:26px;height:26px;flex:0 0 auto}

.home-main{padding:52px 0 70px}
.eyebrow-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  margin-bottom:18px;
}
.eyebrow{
  display:flex;
  align-items:center;
  gap:8px;
  margin:0;
  color:var(--navy);
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:14px;
  font-weight:800;
}
.eyebrow svg{width:16px;height:16px}
.view-link{color:var(--blue);font-weight:700}
.view-link:hover{text-decoration:underline}

.featured-layout{
  display:grid;
  grid-template-columns:minmax(0,1.08fr) minmax(300px,.92fr);
  gap:26px;
}
.feature-card{
  overflow:hidden;
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow-sm);
}
.feature-card img{width:100%;height:350px;object-fit:cover}
.feature-card-body{padding:26px}
.post-badge{
  display:inline-block;
  margin-bottom:16px;
  padding:7px 12px;
  border-radius:999px;
  background:var(--teal);
  color:#fff;
  font-size:12px;
  line-height:1;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.06em;
}
.post-badge.blue{background:var(--blue)}
.post-badge.red{background:var(--red)}
.post-badge.green{background:var(--green)}
.feature-card h2{
  margin:0 0 12px;
  font-size:44px;
  line-height:1.05;
  letter-spacing:-.04em;
  font-weight:700;
}
.feature-card p{
  margin:0 0 18px;
  color:var(--muted);
  font-size:18px;
  line-height:1.6;
  font-weight:400;
}
.post-meta{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  color:var(--muted);
  font-size:14px;
  font-weight:500;
}
.post-meta a{font-weight:500}
.featured-stack{display:grid;gap:14px}
.side-story{
  display:grid;
  grid-template-columns:220px 1fr;
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:18px;
  background:#fff;
  box-shadow:var(--shadow-sm);
}
.side-story img{width:100%;height:162px;object-fit:cover}
.side-story-body{padding:18px}
.side-story h3{
  margin:6px 0 10px;
  font-size:27px;
  line-height:1.08;
  letter-spacing:-.03em;
  font-weight:700;
}
.side-story .post-badge{margin-bottom:8px;font-size:11px;padding:6px 10px}

.topic-section{margin-top:44px}
.topic-title{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
  margin:0 0 18px;
  color:var(--navy);
  font-size:18px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.12em;
}
.topic-title:before,.topic-title:after{content:"";width:92px;height:2px;background:var(--line)}
.topic-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  border:1px solid var(--line);
  border-radius:var(--radius);
  overflow:hidden;
  background:#fff;
}
.topic-card{
  padding:28px;
  border-right:1px solid var(--line);
}
.topic-card:last-child{border-right:0}
.topic-icon{
  width:54px;
  height:54px;
  display:grid;
  place-items:center;
  border-radius:999px;
  color:#fff;
  margin-bottom:12px;
}
.topic-icon svg{width:24px;height:24px}
.topic-card h3{margin:0 0 12px;font-size:22px;line-height:1.1;font-weight:700}
.topic-card ul{list-style:none;margin:0 0 16px;padding:0}
.topic-card li{
  position:relative;
  padding-left:22px;
  margin:8px 0;
  color:var(--text);
  font-size:16px;
  font-weight:400;
}
.topic-card li:before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color:var(--green);
  font-weight:800;
}
.topic-card a{font-weight:700;color:var(--blue)}

.content-strip{
  margin-top:38px;
  padding:26px;
  border-radius:18px;
  background:var(--soft);
}
.content-strip.white{background:#fff;padding:0}
.strip-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  margin-bottom:18px;
}
.strip-head .eyebrow{margin:0}
.cards-4{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}
.cards-6{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:16px;
}
.news-card,
.tip-card,
.archive-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  overflow:hidden;
  box-shadow:var(--shadow-sm);
}
.news-card img,.archive-card img{width:100%;height:190px;object-fit:cover;object-position:center top}
.news-card-body,.archive-card-body{padding:16px}
.news-card h3,.archive-card h3{
  margin:0 0 10px;
  font-size:22px;
  line-height:1.18;
  letter-spacing:-.02em;
  font-weight:700;
}
.news-card .post-meta,.archive-card .post-meta{font-size:13px}
.tip-card img{width:100%;height:138px;object-fit:cover;object-position:center top}
.tip-card-body{padding:12px}
.tip-card h3{
  margin:0 0 8px;
  font-size:16px;
  line-height:1.3;
  letter-spacing:-.01em;
  font-weight:600;
}
.tip-card .post-meta{font-size:12px}
.center-button{text-align:center;margin-top:22px}

.bottom-row{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,1fr);
  gap:24px;
  margin-top:34px;
}
.newsletter-card,
.picks-card{
  padding:30px;
  border-radius:20px;
  border:1px solid var(--line);
  box-shadow:var(--shadow-sm);
}
.newsletter-card{
  background:linear-gradient(135deg,var(--navy),#034985);
  color:#fff;
}
.newsletter-card h2,
.picks-card h2{
  margin:0 0 6px;
  font-size:34px;
  line-height:1.05;
  letter-spacing:-.03em;
  font-weight:700;
}
.newsletter-card p,
.picks-card p{margin:0;color:inherit;font-size:16px;font-weight:400}
.newsletter-form{
  display:flex;
  gap:0;
  margin-top:20px;
}
.newsletter-form input{
  flex:1;
  border:0;
  min-width:0;
  padding:16px 18px;
  border-radius:12px 0 0 12px;
}
.newsletter-form button{
  border:0;
  padding:16px 22px;
  border-radius:0 12px 12px 0;
  background:var(--teal);
  color:#fff;
  font-weight:700;
}
.newsletter-small{display:block;margin-top:12px;color:rgba(255,255,255,.82);font-size:13px}
.picks-card{background:linear-gradient(135deg,#fff,#edfafd)}
.picks-head{display:flex;align-items:center;gap:16px;margin-bottom:18px}
.picks-avatar{width:72px;height:72px;border-radius:999px;object-fit:cover;flex:0 0 auto}
.pick-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:12px}
.pick-item{
  display:block;
  padding:18px;
  border-radius:16px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.88);
}
.pick-item strong{display:block;font-size:18px;line-height:1.2;font-weight:700}
.pick-item span{display:block;margin-top:8px;color:var(--blue);font-weight:600}

.archive-hero,
.page-hero,
.single-hero{
  padding:60px 0 34px;
  background:linear-gradient(180deg,#f5fbff 0%,#fff 100%);
}
.archive-hero h1,
.page-hero h1,
.single-hero h1{
  margin:0 0 10px;
  font-size:60px;
  line-height:1.02;
  letter-spacing:-.05em;
  font-weight:800;
}
.archive-hero p,
.page-hero p,
.single-hero p{
  margin:0;
  max-width:760px;
  color:var(--muted);
  font-size:20px;
  font-weight:400;
}
.archive-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  padding:34px 0 60px;
}
.archive-card img{height:248px;object-position:center top}
.archive-card-body p{
  margin:0 0 14px;
  color:var(--muted);
  font-size:16px;
  line-height:1.55;
  font-weight:400;
}
.pagination{padding:0 0 64px}
.pagination .nav-links{display:flex;gap:14px;justify-content:center;flex-wrap:wrap}
.pagination .page-numbers{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:42px;
  height:42px;
  padding:0 14px;
  border-radius:999px;
  border:1px solid var(--line);
  background:#fff;
}
.pagination .current{background:var(--navy);border-color:var(--navy);color:#fff}

.single-wrap{width:min(860px, calc(100% - 40px));margin:0 auto;padding:40px 0 72px}
.single-featured{margin:24px 0 26px}
.single-featured img{width:100%;border-radius:24px;box-shadow:var(--shadow)}
.single-content{font-size:19px;line-height:1.85;color:#20395c}
.single-content p{margin:0 0 1.3em}
.single-content h2,.single-content h3,.single-content h4{color:var(--text);line-height:1.2;letter-spacing:-.02em}
.single-content h2{font-size:36px;font-weight:700}
.single-content h3{font-size:28px;font-weight:700}
.single-content img{border-radius:18px}

.page-content{padding:44px 0 74px}
.two-col{
  display:grid;
  grid-template-columns:minmax(0,1.1fr) minmax(320px,.9fr);
  gap:28px;
  align-items:start;
}
.content-panel,
.sidebar-panel,
.contact-panel{
  background:#fff;
  border:1px solid var(--line);
  border-radius:22px;
  box-shadow:var(--shadow-sm);
  padding:30px;
}
.content-panel h2,
.sidebar-panel h2,
.contact-panel h2{
  margin:0 0 14px;
  font-size:34px;
  line-height:1.08;
  letter-spacing:-.03em;
  font-weight:700;
}
.content-panel p,
.sidebar-panel p,
.contact-panel p{
  margin:0 0 16px;
  color:#274265;
  font-size:18px;
  line-height:1.7;
  font-weight:400;
}
.about-points{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-top:28px;
}
.about-point{
  padding:22px;
  border-radius:18px;
  background:var(--soft);
}
.about-point h3{
  margin:0 0 8px;
  font-size:22px;
  line-height:1.15;
  font-weight:700;
}
.about-point p{margin:0;font-size:16px;line-height:1.55}
.contact-form{display:grid;gap:16px}
.contact-form label{display:block;margin-bottom:6px;font-weight:700}
.contact-form input,
.contact-form textarea{
  width:100%;
  border:1px solid var(--line);
  border-radius:14px;
  padding:14px 16px;
  background:#fff;
}
.contact-form textarea{min-height:170px;resize:vertical}
.notice{
  margin-bottom:18px;
  padding:14px 16px;
  border-radius:14px;
  font-weight:600;
}
.notice.ok{background:#e7fff5;color:#0d7352}
.notice.error{background:#fff0f0;color:#982f2f}
.contact-list{display:grid;gap:12px;margin-top:10px}
.contact-list-item{
  padding:16px;
  border:1px solid var(--line);
  border-radius:16px;
  background:var(--soft);
}
.contact-list-item strong{display:block;font-size:16px;font-weight:700}
.contact-list-item span{display:block;color:var(--muted);font-size:15px;font-weight:500}

.search-grid{padding:34px 0 64px}
.search-empty{padding:20px 0 60px;color:var(--muted)}

.site-footer{
  background:linear-gradient(135deg,var(--navy),#003b70);
  color:#fff;
  margin-top:30px;
}
.footer-inner{padding:46px 0 18px}
.footer-grid{
  display:grid;
  grid-template-columns:1.7fr 1fr 1fr 1fr 1.3fr;
  gap:28px;
}
.footer-brand .brand-name{color:#fff;font-size:34px}
.footer-brand .brand-tag{color:rgba(255,255,255,.7)}
.footer-copy{margin-top:16px;color:rgba(255,255,255,.82);font-size:16px;line-height:1.7;font-weight:400}
.footer-title{
  margin:0 0 12px;
  color:#fff;
  font-size:13px;
  line-height:1;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-weight:700;
}
.footer-col a,
.footer-col p{
  display:block;
  margin:8px 0;
  color:rgba(255,255,255,.86);
  font-size:15px;
  font-weight:400;
}
.footer-social{display:flex;gap:10px;margin-top:16px}
.footer-social a{
  width:38px;
  height:38px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background:rgba(255,255,255,.12);
}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.14);
  margin-top:30px;
  padding-top:16px;
  text-align:center;
  color:rgba(255,255,255,.74);
  font-size:13px;
  font-weight:500;
}

.wp-block-image img,
.alignwide img,
.alignfull img{border-radius:18px}

@media (max-width:1180px){
  .cards-6{grid-template-columns:repeat(3,1fr)}
}
@media (max-width:1024px){
  .hero h1{font-size:60px}
  .featured-layout,
  .bottom-row,
  .two-col{grid-template-columns:1fr}
  .topic-grid{grid-template-columns:repeat(2,1fr)}
  .archive-grid,.cards-4{grid-template-columns:repeat(2,1fr)}
  .footer-grid{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:920px){
  .main-nav{display:none;position:absolute;top:86px;left:0;right:0;background:#fff;border-bottom:1px solid var(--line);box-shadow:var(--shadow)}
  .main-nav.is-open{display:block}
  .primary-menu{display:flex;flex-direction:column;align-items:flex-start;padding:16px 20px;gap:0}
  .primary-menu a{padding:12px 0;border-bottom:0}
  .header-actions{display:none}
  .mobile-toggle{display:block}
  .start-grid,.archive-grid{grid-template-columns:1fr}
  .side-story{grid-template-columns:1fr}
  .side-story img{height:220px}
  .footer-grid{grid-template-columns:1fr 1fr}
}
@media (max-width:680px){
  body.admin-bar .site-header{top:0}
  .container{width:min(calc(100% - 24px),1200px)}
  .header-inner{min-height:74px}
  .brand-name{font-size:28px}
  .hero-content{padding:62px 0 64px}
  .hero h1{font-size:46px}
  .hero p{font-size:17px}
  .hero-search,
  .newsletter-form{display:block}
  .hero-search input,
  .newsletter-form input{width:100%;border-radius:12px;margin-bottom:10px}
  .hero-search button,
  .newsletter-form button{width:100%;border-radius:12px}
  .quick-card{width:100%}
  .section-heading{font-size:24px}
  .feature-card img{height:240px}
  .feature-card h2{font-size:34px}
  .side-story h3,.news-card h3,.archive-card h3{font-size:24px}
  .topic-grid,.cards-4,.cards-6,.pick-grid,.about-points,.footer-grid{grid-template-columns:1fr}
  .topic-card{border-right:0;border-bottom:1px solid var(--line)}
  .topic-card:last-child{border-bottom:0}
  .archive-hero h1,.page-hero h1,.single-hero h1{font-size:42px}
  .footer-brand .brand-name{font-size:30px}
}

/* Version 3.1.0 refinements */
:root{
  --container:min(1360px, calc(100% - 48px));
}

.header-inner{
  gap:20px;
  justify-content:space-between;
}
.brand{
  margin-right:18px;
  flex:0 0 auto;
  max-width:360px;
}
.custom-logo-link,
.custom-logo-link img{
  display:block;
}
.main-nav{
  flex:1 1 auto;
  justify-content:center;
}
.primary-menu{
  justify-content:center;
  gap:28px;
}
.header-actions{
  flex:0 0 auto;
}
.header-icon,
.search-toggle{
  width:38px;
  height:38px;
  border:0;
  padding:0;
  background:transparent;
  border-radius:999px;
  display:grid;
  place-items:center;
  color:var(--navy);
}
.header-icon:hover,
.search-toggle:hover{
  background:var(--soft);
}
.site-search-panel{
  border-top:1px solid var(--line);
  background:rgba(255,255,255,.98);
  backdrop-filter:blur(10px);
}
.site-search-panel.is-open{
  animation:slideDown .18s ease-out;
}
@keyframes slideDown{
  from{opacity:0;transform:translateY(-8px)}
  to{opacity:1;transform:translateY(0)}
}
.search-panel-inner{
  display:flex;
  align-items:center;
  gap:14px;
  padding:18px 0;
}
.header-search-form{
  flex:1 1 auto;
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  box-shadow:var(--shadow-sm);
}
.header-search-icon{width:20px;height:20px;color:var(--muted);flex:0 0 auto}
.header-search-form input{
  flex:1 1 auto;
  min-width:0;
  border:0;
  outline:0;
  background:transparent;
  padding:12px 6px;
  color:var(--text);
}
.search-close{
  width:46px;
  height:46px;
  border:1px solid var(--line);
  background:#fff;
  color:var(--navy);
  border-radius:14px;
  display:grid;
  place-items:center;
}
.hero{
  background-position:center center;
}
.hero-content{
  max-width:720px;
}
.hero h1{
  max-width:650px;
}
.feature-card p,
.archive-card-body p,
.content-panel p,
.sidebar-panel p,
.contact-panel p,
.picks-card p,
.newsletter-card p,
.tip-card h3,
.news-card h3,
.topic-card li,
.post-meta,
.contact-list-item span,
.single-content{
  font-weight:400;
}
.section-heading span,
.content-panel h2,
.sidebar-panel h2,
.contact-panel h2,
.feature-card h2,
.side-story h3,
.archive-hero h1,
.page-hero h1,
.single-hero h1,
.newsletter-card h2,
.picks-card h2{
  font-weight:700;
}
.author-box{
  margin-top:38px;
  display:grid;
  grid-template-columns:120px 1fr;
  gap:24px;
  align-items:center;
  padding:28px;
  border:1px solid var(--line);
  border-radius:24px;
  background:linear-gradient(135deg,#fff,#f5fbff);
  box-shadow:var(--shadow-sm);
}
.author-box-avatar{
  width:100px;
  height:100px;
  border-radius:999px;
  object-fit:cover;
  box-shadow:0 10px 25px rgba(7,42,87,.15);
}
.author-box-kicker{
  margin:0 0 6px;
  color:var(--blue);
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.12em;
  font-weight:700;
}
.author-box h2{
  margin:0 0 10px;
  font-size:34px;
  line-height:1.05;
  letter-spacing:-.03em;
}
.author-box-content p{
  margin:0;
  color:#274265;
}
.author-box-links{
  display:flex;
  align-items:center;
  gap:16px;
  margin-top:18px;
  flex-wrap:wrap;
}
.btn-outline{
  background:#fff;
  color:var(--navy);
  border:1px solid var(--line);
}
.author-inline-link{
  color:var(--blue);
  font-weight:700;
}
.about-page-content{
  display:grid;
  gap:28px;
}
.about-hero-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) 320px;
  gap:24px;
  align-items:end;
}
.about-hero-card{
  padding:24px;
  border-radius:22px;
  background:linear-gradient(135deg,var(--navy),#0f4e8b);
  color:#fff;
  box-shadow:var(--shadow-sm);
}
.about-hero-card strong{
  display:block;
  margin-bottom:8px;
  font-size:24px;
  line-height:1.1;
}
.about-hero-card span{display:block;color:rgba(255,255,255,.88)}
.about-intro-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:22px;
  align-items:stretch;
}
.about-story-panel{
  min-height:100%;
}
.mini-feature-card{
  padding:24px;
  border:1px solid var(--line);
  border-radius:22px;
  box-shadow:var(--shadow-sm);
}
.mini-feature-card h3{
  margin:0 0 8px;
  font-size:24px;
  line-height:1.1;
}
.mini-feature-card p{
  margin:0;
  color:var(--muted);
}
.about-split-section,
.about-values-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(360px,.9fr);
  gap:28px;
  align-items:stretch;
}
.about-image-panel img{
  width:100%;
  height:100%;
  min-height:420px;
  object-fit:cover;
  border-radius:24px;
  box-shadow:var(--shadow);
}
.about-focus-list{
  display:grid;
  gap:14px;
  margin-top:18px;
}
.about-focus-item{
  padding:18px 20px;
  background:var(--soft);
  border:1px solid var(--line);
  border-radius:18px;
}
.about-focus-item strong{display:block;margin-bottom:6px;font-size:18px}
.about-focus-item span{display:block;color:var(--muted)}
.picks-head a{display:block}

@media (max-width: 1180px){
  .about-intro-grid{grid-template-columns:1fr 1fr;}
  .about-story-panel{grid-column:1 / -1;}
  .about-split-section,
  .about-values-grid,
  .about-hero-grid{grid-template-columns:1fr;}
}

@media (max-width: 980px){
  .primary-menu{gap:17px;}
  .author-box{grid-template-columns:1fr;}
}

@media (max-width: 782px){
  .search-panel-inner{padding:14px 0;}
  .header-search-form{padding:10px;}
  .header-search-form,
  .search-panel-inner{flex-direction:column;align-items:stretch;}
  .search-close{width:100%;height:44px;}
  .about-intro-grid{grid-template-columns:1fr;}
}

/* CruiseShip update 3.2 */
:root{--container:min(1280px, calc(100% - 48px));}
.site-header .header-inner{min-height:76px;gap:18px;justify-content:flex-start;}
.site-header .brand{flex:0 0 275px;max-width:275px;margin-right:auto;}
.site-header .custom-logo-link img,.site-header .custom-logo{max-height:42px;width:auto;}
.site-header .main-nav{flex:1 1 auto;justify-content:flex-end;min-width:0;}
.site-header .primary-menu{gap:20px;justify-content:flex-end;}
.site-header .primary-menu a{font-size:14px;padding:27px 0 23px;}
.site-header .header-actions{gap:6px;margin-left:8px;}
.site-header .header-icon,.site-header .search-toggle{width:34px;height:34px;}

.hero{min-height:640px;background-position:center right;background-size:cover;display:flex;align-items:center;}
.hero:before{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(5,24,51,.82) 0%,rgba(7,42,87,.66) 37%,rgba(7,42,87,.22) 72%,rgba(7,42,87,.08) 100%);z-index:0;}
.hero .hero-content{padding:86px 0 96px;position:relative;z-index:1;}
.hero h1{font-weight:750;}
.hero p{font-weight:400;}
.hero-kicker{font-weight:600;}

.picks-card .picks-avatar{background:#fff;object-fit:cover;object-position:center top;padding:0;border:3px solid rgba(255,255,255,.9);box-shadow:0 10px 26px rgba(7,42,87,.16);}
.pick-grid{grid-template-columns:repeat(3,minmax(0,1fr));}
.pick-item strong{display:block;line-height:1.2;}
.pick-item span{display:block;margin-top:10px;}

.about-redesign{background:linear-gradient(180deg,#f6fbff 0,#fff 32%);}
.about-top{padding:86px 0 48px;}
.about-top-grid{display:grid;grid-template-columns:minmax(0,.9fr) minmax(420px,.76fr);gap:54px;align-items:center;}
.about-top-copy h1{margin:8px 0 20px;font-size:60px;line-height:1;letter-spacing:-.055em;color:var(--navy);font-weight:750;}
.about-lead{max-width:760px;margin:0;color:#425875;font-size:21px;line-height:1.65;font-weight:400;}
.about-top-actions{display:flex;gap:14px;flex-wrap:wrap;margin-top:28px;}
.about-photo-card{position:relative;border-radius:30px;overflow:hidden;box-shadow:var(--shadow);background:#fff;min-height:420px;}
.about-photo-card img{width:100%;height:100%;min-height:420px;object-fit:cover;}
.about-photo-card:after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(7,42,87,0) 35%,rgba(7,42,87,.78) 100%);}
.about-photo-note{position:absolute;z-index:1;left:28px;right:28px;bottom:26px;color:#fff;}
.about-photo-note strong{display:block;margin-bottom:8px;font-size:24px;line-height:1.1;}
.about-photo-note span{display:block;color:rgba(255,255,255,.88);font-size:16px;line-height:1.5;}
.about-stat-row{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin-bottom:34px;}
.about-stat-row article{padding:26px 28px;border:1px solid var(--line);border-radius:22px;background:#fff;box-shadow:var(--shadow-sm);}
.about-stat-row strong{display:block;margin-bottom:6px;font-size:24px;color:var(--navy);line-height:1.1;}
.about-stat-row span{display:block;color:var(--muted);font-size:16px;line-height:1.55;}
.about-mission-grid{display:grid;grid-template-columns:minmax(0,1fr) minmax(380px,.72fr);gap:28px;margin-bottom:34px;align-items:stretch;}
.about-main-panel{padding:36px;}
.about-main-panel h2,.about-pillars-card h2,.about-bottom-grid h2{margin:0 0 16px;font-size:34px;line-height:1.08;letter-spacing:-.035em;color:var(--navy);}
.about-main-panel p,.about-bottom-grid p{font-size:17px;line-height:1.75;color:#263e61;font-weight:400;}
.about-pillars-card{padding:30px;border:1px solid var(--line);border-radius:24px;background:linear-gradient(135deg,#fff,#eff9ff);box-shadow:var(--shadow-sm);}
.about-pillar-list{display:grid;gap:14px;margin-top:20px;}
.about-pillar-list a{display:block;padding:18px 20px;border:1px solid var(--line);border-radius:18px;background:#fff;transition:.16s ease;}
.about-pillar-list a:hover{transform:translateY(-2px);box-shadow:var(--shadow-sm);}
.about-pillar-list strong{display:block;margin-bottom:5px;font-size:18px;color:var(--navy);}
.about-pillar-list span{display:block;color:var(--muted);line-height:1.5;}
.about-principles{padding:28px 0 10px;}
.section-intro{text-align:center;max-width:720px;margin:0 auto 24px;}
.section-intro h2{margin:8px 0 0;font-size:42px;line-height:1.05;letter-spacing:-.04em;color:var(--navy);}
.principle-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px;}
.principle-grid .surface-card{padding:26px;border-radius:22px;box-shadow:var(--shadow-sm);}
.principle-grid h3{margin:0 0 10px;font-size:22px;line-height:1.15;color:var(--navy);}
.principle-grid p{margin:0;color:var(--muted);font-weight:400;}
.about-bottom-grid{display:grid;grid-template-columns:1fr 1fr;gap:28px;padding:28px 0 76px;}
.about-bottom-grid .content-panel{padding:34px;}
.about-content-from-editor p:first-of-type{margin-top:0;}
.author-archive-card{display:flex;align-items:center;gap:24px;}
.author-archive-avatar{width:132px;height:132px;border-radius:999px;object-fit:cover;object-position:center top;background:#fff;box-shadow:var(--shadow-sm);}

@media (max-width: 1120px){
  .site-header .brand{flex-basis:225px;max-width:225px;}
  .site-header .primary-menu{gap:14px;}
  .site-header .primary-menu a{font-size:13px;}
  .about-top-grid,.about-mission-grid,.about-bottom-grid{grid-template-columns:1fr;}
  .principle-grid{grid-template-columns:repeat(2,1fr);}
}
@media (max-width: 760px){
  :root{--container:min(100% - 28px, 1280px);}
  .hero{min-height:auto;}
  .hero .hero-content{padding:64px 0;}
  .about-top{padding:58px 0 34px;}
  .about-top-copy h1{font-size:42px;}
  .about-lead{font-size:18px;}
  .about-stat-row,.principle-grid,.pick-grid{grid-template-columns:1fr;}
  .about-photo-card,.about-photo-card img{min-height:300px;}
  .author-archive-card{align-items:flex-start;flex-direction:column;}
}


/* v3.3 refinements */
.site-header .container{width:min(1380px, calc(100% - 40px));}
.header-inner{gap:20px;}
.brand{flex:0 0 360px;margin-right:0;}
.main-nav{margin-left:auto;}
.primary-menu{gap:17px;}
.primary-menu a{font-size:14px;padding:31px 0 27px;}
.header-actions{gap:8px;margin-left:10px;}
.header-icon,.header-actions a{width:34px;height:34px;display:grid;place-items:center;border-radius:999px;border:0;background:transparent;color:var(--navy);}
.header-icon:hover,.header-actions a:hover{background:var(--soft);}
.hero{background-position:center center;}
.hero-content{max-width:620px;padding:84px 0 86px;}
.hero h1{font-size:68px;max-width:620px;}
.hero:before{content:"";position:absolute;inset:0;background:linear-gradient(90deg, rgba(7,42,87,.72) 0%, rgba(7,42,87,.42) 45%, rgba(7,42,87,.08) 100%);}
.hero > *{position:relative;z-index:1;}
.picks-avatar-link{display:block;flex:0 0 auto;}
.picks-avatar,.picks-head img{width:78px;height:78px;object-fit:cover;border-radius:999px;border:3px solid #fff;box-shadow:var(--shadow-sm);background:#fff;}
.author-box-avatar-wrap a{display:block;width:100%;height:100%;}
.author-box-avatar{object-fit:cover;}
.about-hero-modern{padding:34px 0 18px;background:linear-gradient(180deg,#f7fbff 0%, #eef6ff 100%);}
.about-hero-grid{display:grid;grid-template-columns:minmax(0,1.35fr) minmax(360px,.95fr);gap:28px;align-items:start;}
.about-hero-copy{padding:18px 0 10px;}
.about-hero-copy h1{font-size:64px;line-height:1.02;letter-spacing:-.04em;margin:0 0 16px;color:var(--navy);}
.about-lead{font-size:22px;line-height:1.55;max-width:760px;color:var(--muted);margin:0 0 24px;}
.about-hero-side{display:grid;gap:16px;}
.about-side-card{border:1px solid var(--line);background:#fff;border-radius:24px;padding:20px 22px;box-shadow:var(--shadow-sm);display:flex;flex-direction:column;gap:6px;}
.about-side-card.feature{background:var(--navy);color:#fff;padding:24px 24px;}
.about-side-card.feature h3{margin:0;font-size:28px;line-height:1.05;color:#fff;}
.about-side-card.feature p{margin:0;color:rgba(255,255,255,.86);}
.about-side-mini-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:16px;}
.about-side-card strong{font-size:18px;line-height:1.1;}
.about-side-card span,.about-side-card p{font-size:15px;line-height:1.55;}
.about-balanced-grid{display:grid;grid-template-columns:1.06fr .94fr;gap:24px;padding:24px 0;align-items:stretch;}
.about-story-card,.about-focus-card{height:100%;}
.about-inline-photo{border-radius:18px;margin-top:18px;box-shadow:var(--shadow-sm);width:100%;height:auto;}
.about-pillar-list.compact{display:grid;gap:14px;margin-top:10px;}
.about-pillar-list.compact a{display:block;border:1px solid var(--line);background:var(--soft);border-radius:18px;padding:18px 18px;}
.about-pillar-list.compact strong{display:block;font-size:19px;line-height:1.2;margin-bottom:6px;}
.about-pillar-list.compact span{display:block;color:var(--muted);font-size:15px;line-height:1.55;}
.about-principles-row{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;padding:0 0 24px;}
.about-principles-row .surface-card{padding:24px;}
.about-principles-row h3{margin:0 0 10px;font-size:24px;line-height:1.1;}
.about-principles-row p{margin:0;color:var(--muted);}
.about-bottom-grid.improved{display:grid;grid-template-columns:1fr 1fr;gap:24px;padding-bottom:60px;}
.expect-list{list-style:none;padding:0;margin:10px 0 0;display:grid;gap:14px;}
.expect-list li{border:1px solid var(--line);background:var(--soft);border-radius:18px;padding:16px 18px;display:grid;gap:4px;}
.expect-list strong{font-size:18px;line-height:1.15;}
.expect-list span{color:var(--muted);font-size:15px;line-height:1.5;}
.about-extra-content{padding-top:10px;padding-bottom:42px;}
.page-content .content-panel h2,.page-content .content-panel h3{color:var(--navy);}
.page-content .content-panel p,.page-content .content-panel li{font-weight:400;}
@media (max-width: 1100px){.brand{flex:0 0 280px;}.about-hero-grid,.about-balanced-grid,.about-bottom-grid.improved{grid-template-columns:1fr;}.about-side-mini-grid,.about-principles-row{grid-template-columns:1fr 1fr;}}
@media (max-width: 820px){.site-header .container{width:min(100%, calc(100% - 24px));}.brand{flex:1 1 auto;}.main-nav{margin-left:0;}.about-hero-copy h1{font-size:44px;}.about-lead{font-size:18px;}.about-side-mini-grid,.about-principles-row{grid-template-columns:1fr;}.hero h1{font-size:48px;}}


/* v6 refinements */
.site-header .container.header-inner{width:min(1320px, calc(100% - 40px));gap:18px;justify-content:space-between;}
.brand{margin-right:28px;flex:0 0 auto;}
.main-nav{margin-left:auto;margin-right:8px;}
.primary-menu{gap:22px;}
.header-actions{gap:10px;flex:0 0 auto;}
.quick-actions .quick-card{min-width:220px;}
.page-hero.simple{padding:48px 0 24px;background:var(--soft);}
.about-simple-hero{display:block;max-width:860px;}
.about-simple-copy h1{margin:0 0 12px;font-size:60px;line-height:1.02;letter-spacing:-.04em;color:var(--navy);}
.about-simple-copy p{margin:0;color:var(--muted);font-size:21px;max-width:820px;}
.about-clean-grid{display:grid;grid-template-columns:minmax(0,1.45fr) minmax(320px,.95fr);gap:30px;padding:34px 0 80px;}
.about-main-story h2,.about-sidebar-simple h2{margin:0 0 16px;font-size:42px;line-height:1.05;letter-spacing:-.03em;color:var(--navy);}
.about-main-story p,.about-sidebar-simple p{margin:0 0 16px;color:var(--muted);font-size:18px;}
.about-note-box{margin-top:18px;padding:20px 22px;border:1px solid var(--line);background:var(--soft);border-radius:18px;}
.about-note-box strong{display:block;font-size:18px;color:var(--navy);margin-bottom:8px;}
.legal-hero{padding:56px 0 20px;background:var(--soft);}
.legal-hero h1{margin:0 0 10px;font-size:54px;line-height:1.02;letter-spacing:-.04em;color:var(--navy);}
.legal-hero p{max-width:760px;font-size:20px;color:var(--muted);margin:0;}
.legal-copy h2{margin:26px 0 10px;font-size:28px;line-height:1.15;color:var(--navy);}
.legal-copy p{margin:0 0 14px;color:var(--muted);font-size:17px;}
@media (max-width: 980px){.site-header .container.header-inner{width:var(--container);} .about-clean-grid{grid-template-columns:1fr;} .about-simple-copy h1{font-size:46px;} .legal-hero h1{font-size:42px;}}


/* v7 refinements */
.site-header .container.header-inner{width:min(1360px, calc(100% - 44px));gap:20px;justify-content:flex-start;}
.brand.brand-text-only{margin-right:34px;padding-right:0;position:relative;left:-10px;}
.brand.brand-text-only .brand-name{font-size:36px;line-height:.94;font-weight:700;letter-spacing:-.035em;color:#111;font-family:Georgia,serif;}
.brand.brand-text-only .brand-tag{margin-top:5px;font-size:8px;letter-spacing:.17em;color:#666;}
.main-nav{margin-left:auto;margin-right:10px;}
.primary-menu{gap:17px;}
.primary-menu a{font-size:14px;}
.header-actions{gap:8px;}
.header-actions a,.header-actions .header-icon{width:34px;height:34px;}
.footer-social a[aria-label="YouTube"]{display:none;}
.trust-line{display:none !important;}
.about-page-hero.refined{padding:60px 0 34px;background:linear-gradient(180deg,#f5fbff 0%,#fff 100%);}
.about-page-hero.refined h1{margin:0 0 10px;font-size:60px;line-height:1.02;letter-spacing:-.05em;font-weight:800;color:var(--navy);}
.about-page-hero.refined .about-hero-intro{max-width:760px;font-size:20px;color:var(--muted);margin:0;font-weight:400;}
.about-refined-grid{display:grid;grid-template-columns:minmax(0,1.15fr) minmax(340px,.85fr);gap:26px;padding:28px 0 22px;align-items:stretch;}
.about-story-card-refined,.about-focus-card-refined{height:100%;}
.about-story-card-refined h2,.about-focus-card-refined h2{margin:0 0 16px;font-size:38px;line-height:1.06;letter-spacing:-.03em;color:var(--navy);}
.about-story-card-refined p,.about-focus-card-refined p{margin:0 0 16px;color:#355172;font-size:18px;line-height:1.7;}
.about-pillar-list.compact.refined{gap:12px;}
.about-pillar-list.compact.refined a{padding:16px 18px;}
.about-values-row.refined{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;padding:0 0 48px;}
.about-value-card{padding:26px;}
.about-value-card h3{margin:0 0 10px;font-size:24px;line-height:1.1;color:var(--navy);}
.about-value-card p{margin:0;color:var(--muted);font-size:16px;line-height:1.6;}
@media (max-width: 1180px){.site-header .container.header-inner{width:min(100%, calc(100% - 30px));}.brand.brand-text-only .brand-name{font-size:33px;}.primary-menu{gap:15px;}}
@media (max-width: 980px){.about-refined-grid,.about-values-row.refined{grid-template-columns:1fr;}.about-page-hero.refined h1{font-size:42px;}.brand.brand-text-only{left:0;margin-right:18px;}.brand.brand-text-only .brand-name{font-size:30px;}}

.header-actions a[aria-label="Facebook"], .footer-social a[aria-label="Facebook"]{display:grid;place-items:center;}

.contact-honeypot { position:absolute !important; left:-9999px !important; width:1px; height:1px; overflow:hidden; }

/* About page v16 refinements */
.about-refined-grid-single-row{padding-bottom:20px;}
.about-owner-section{padding:10px 0 72px;}
.about-owner-card{display:grid;grid-template-columns:220px minmax(0,1fr);gap:34px;align-items:center;padding:36px 40px;border-radius:28px;background:linear-gradient(135deg,#ffffff 0%,#f4fbff 100%);}
.about-owner-card-polished{position:relative;overflow:hidden;}
.about-owner-card-polished:before{content:"";position:absolute;top:-90px;right:-90px;width:260px;height:260px;border-radius:50%;background:rgba(42,203,219,.08);pointer-events:none;}
.about-owner-card-polished:after{content:"";position:absolute;left:-100px;bottom:-100px;width:220px;height:220px;border-radius:50%;background:rgba(7,42,87,.05);pointer-events:none;}
.about-owner-media{position:relative;z-index:1;align-self:start;}
.about-owner-media img{width:100%;max-width:220px;aspect-ratio:1/1.08;object-fit:cover;object-position:center top;border-radius:24px;display:block;box-shadow:0 16px 34px rgba(7,42,87,.14);background:#eef4fb;}
.about-owner-copy{position:relative;z-index:1;max-width:760px;}
.about-owner-copy .eyebrow{display:inline-block;margin-bottom:10px;font-size:12px;letter-spacing:.14em;text-transform:uppercase;color:#5a7293;font-weight:800;}
.about-owner-copy h2{margin:0 0 14px;font-size:44px;line-height:1.02;letter-spacing:-.03em;color:var(--navy);}
.about-owner-copy p{margin:0 0 16px;color:#355172;font-size:18px;line-height:1.72;}
.about-signoff{display:flex;flex-direction:column;gap:4px;margin-top:18px;padding-top:18px;border-top:1px solid rgba(13,42,87,.1);}
.about-signature{font-family:Georgia,"Times New Roman",serif;font-style:italic;font-size:38px;line-height:1;color:var(--navy);}
.about-signature-title{color:var(--muted);font-size:15px;}
@media (max-width: 980px){
  .about-owner-card{grid-template-columns:1fr;gap:24px;padding:28px 24px;}
  .about-owner-media img{max-width:200px;}
  .about-owner-copy h2{font-size:34px;}
  .about-signature{font-size:32px;}
}
