/* ============================================
   CARRY ON BETTER — Global Stylesheet
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --olive:        #898f41;
  --olive-light:  #f0f1e0;
  --olive-dark:   #4a5018;
  --magenta:      #ab098c;
  --magenta-light:#f9e8f5;
  --magenta-dark: #6e0560;
  --orange:       #d4600a;
  --orange-light: #fdf0e6;
  --orange-dark:  #7a2e00;
  --black:        #111111;
  --off-white:    #f4f3ef;
  --white:        #ffffff;
}

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  color: var(--black);
  background: var(--off-white);
  line-height: 1.6;
}

em, i {
  font-family: 'Playfair Display', serif;
  font-style: italic;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ---- NAV ---- */
nav {
  display: flex;
  align-items: stretch;
  height: 72px;
  border-bottom: 2px solid var(--black);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo-side {
  background: var(--olive);
  padding: 0 28px;
  display: flex;
  align-items: center;
  border-right: 2px solid var(--black);
  flex-shrink: 0;
  text-decoration: none;
}

.nav-logo-side .logo-carry {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 900;
  font-size: 1rem;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.1;
  display: block;
}

.nav-logo-side .logo-better {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--magenta);
  display: block;
  line-height: 1.1;
}

.nav-links-side {
  background: var(--magenta);
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  padding: 0 40px;
  gap: 12px;
}

.nav-links-side a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  padding: 8px 18px;
  border-radius: 999px;
  transition: background 0.15s;
  white-space: nowrap;
}

.nav-links-side a:hover { background: rgba(255,255,255,0.15); }

.nav-search {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,0.75);
  padding: 6px 10px;
  font-size: 1.1rem;
  line-height: 1;
  border-radius: 999px;
  transition: background 0.15s;
}
.nav-search:hover { background: rgba(255,255,255,0.15); }

.nav-cta {
  background: var(--white) !important;
  color: var(--black) !important;
  font-weight: 700 !important;
  border: 1.5px solid var(--black);
  margin-left: 8px;
}
.nav-cta:hover { background: var(--off-white) !important; }

/* ---- BOURDAIN BAND ---- */
.bourdain-band {
  background: var(--olive);
  padding: 48px 60px;
  border-bottom: 2px solid var(--black);
  text-align: center;
}

.bourdain-band p {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  color: var(--white);
  line-height: 1.55;
  max-width: 720px;
  margin: 0 auto 14px;
  letter-spacing: -0.01em;
}

.bourdain-band .attribution {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.6);
}

/* ---- SHIFT EMAIL SIGNUP ---- */
.shift-section {
  background: var(--magenta);
  padding: 40px 60px;
  border-bottom: 2px solid var(--black);
  text-align: center;
}

.shift-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.shift-section h2 {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 900;
  font-size: 3rem;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}

.shift-section .shift-sub {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.shift-section p {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  max-width: 480px;
  margin: 0 auto 24px;
  line-height: 1.7;
}

.shift-form {
  max-width: 500px;
  margin: 0 auto 12px;
}

.shift-form input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 12px 20px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--white);
  outline: none;
}

.shift-form input::placeholder { color: rgba(255,255,255,0.55); }

.shift-form button {
  background: var(--white);
  color: var(--black);
  border: none;
  padding: 12px 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
}

.shift-fine {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
}

/* ---- FOOTER ---- */
footer {
  background: var(--black);
  padding: 28px 60px 20px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 16px;
}

.footer-logo .logo-carry {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 900;
  font-size: 0.95rem;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.footer-logo .logo-better {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  font-size: 1rem;
  color: var(--olive);
  line-height: 1.1;
}

.footer-nav {
  display: flex;
  gap: 36px !important;
  flex-wrap: wrap;
  align-items: center;
}

.footer-nav a {
  font-size: 0.73rem;
  color: rgba(255,255,255,0.95);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-nav a:hover { color: var(--olive); }

.footer-ig {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  transition: color 0.15s;
}
.footer-ig:hover { color: var(--white); }
.footer-ig svg { width: 20px; height: 20px; display: block; }

.footer-legal {
  font-size: 0.63rem;
  color: rgba(255,255,255,0.25);
  line-height: 1.7;
}

.footer-legal a { color: var(--olive); text-decoration: underline; }

/* ---- UTILITY ---- */
.photo-caption {
  position: absolute;
  bottom: 18px;
  right: 24px;
  font-family: 'Caveat', cursive;
  font-size: 1.25rem;
  font-weight: 500;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  letter-spacing: 0.01em;
  z-index: 2;
  pointer-events: none;
}

.pill {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1.5px solid;
}

.pill-travel   { background: var(--olive-light);   border-color: var(--olive);   color: var(--olive-dark); }
.pill-miles    { background: var(--magenta-light); border-color: var(--magenta); color: var(--magenta-dark); }
.pill-mental   { background: var(--orange-light);  border-color: var(--orange);  color: var(--orange-dark); }

.post-card {
  background: var(--white);
  border: 2px solid var(--black);
  border-radius: 24px;
  overflow: hidden;
}

.post-card-img {
  height: 200px;
  background: #ccc;
  border-bottom: 2px solid var(--black);
}

.post-card-body { padding: 20px; }

.post-card-body h3 {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 900;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  margin: 10px 0 8px;
  line-height: 1.25;
}

.post-card-body p {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 14px;
}

.read-more {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: 0.04em;
}

@media (max-width: 768px) {
  nav { height: 64px; }
  .nav-logo-side { border-right: 2px solid var(--black); padding: 0 20px; }
  .nav-links-side { display: none !important; }
  .nav-mobile-toggle { display: flex !important; }
  .bourdain-band { padding: 40px 24px; }
  .bourdain-band p { font-size: 1.25rem; }
  .shift-section { padding: 48px 24px; }
  footer { padding: 24px; }
  .footer-top { flex-direction: column; align-items: flex-start; }
}

/* ---- HAMBURGER MENU (mobile) ---- */
.nav-mobile-toggle {
  display: none;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  background: var(--magenta);
  padding: 0 20px;
}
.hamburger-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  justify-content: center;
  align-items: center;
}
.hamburger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--magenta);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-20px);
  transition: opacity 0.3s, transform 0.3s;
}
.mobile-menu-overlay.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.mobile-menu-overlay a {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.mobile-menu-overlay a.active { text-decoration: underline; }
.mobile-menu-overlay .mobile-cta {
  background: var(--white);
  color: var(--black);
  border-radius: 999px;
  padding: 12px 28px;
  font-size: 0.95rem;
  font-weight: 700;
  margin-top: 12px;
  letter-spacing: 0.02em;
}
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu-close::before,
.mobile-menu-close::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--white);
}
.mobile-menu-close::before { transform: rotate(45deg); }
.mobile-menu-close::after { transform: rotate(-45deg); }
body.menu-open { overflow: hidden; }

/* ---- HOMEPAGE ADDITIONS ---- */
.philosophy-band {
  background: #898f41;
  padding: 52px 60px;
  border-bottom: 2px solid #111;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.philosophy-band h2 {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 900;
  font-size: 2.4rem;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.15;
}
.philosophy-band p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
}

.about-section {
  display: grid;
  grid-template-columns: 2fr 3fr;
  border-bottom: 2px solid #111;
  min-height: 380px;
}
.about-photo {
  background: #ab098c;
  border-right: 2px solid #111;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  gap: 16px;
}
.about-photo img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  border: 3px solid #111;
  display: block;
}
.about-name-card {
  background: #fff;
  border-radius: 10px;
  padding: 10px 18px;
  width: 100%;
}
.about-name {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 900;
  font-size: 0.95rem;
  color: #111;
}
.about-desc {
  font-size: 0.72rem;
  color: #888;
  margin-top: 4px;
  line-height: 1.5;
}
.about-copy {
  padding: 56px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-dots {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.dot-olive {
  width: 8px; height: 8px; border-radius: 50%; background: #898f41; display: inline-block;
}
.dot-magenta {
  width: 8px; height: 8px; border-radius: 50%; background: #ab098c; display: inline-block;
}
.about-eyebrow-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7a756e;
}
.about-copy h2 {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 900;
  font-size: 1.9rem;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.about-copy p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 16px;
}
.about-pullquote {
  border-left: 3px solid #ab098c;
  padding-left: 16px;
  border-radius: 0;
  margin-bottom: 24px;
}
.about-pullquote p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.9rem;
  color: #555;
  line-height: 1.65;
  margin: 0;
}
.about-copy a {
  display: inline-block;
  background: #111;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 999px;
  align-self: flex-start;
}
.statement-band {
  background: #d4600a;
  padding: 52px 60px;
  border-bottom: 2px solid #111;
  text-align: center;
}
.statement-band p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 2rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.5;
  max-width: 700px;
  margin: 0 auto;
}
.statement-band p strong {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-style: normal;
  font-weight: 900;
  color: #fff;
  display: block;
  font-size: 2.4rem;
}
.posts-section {
  padding: 56px 60px;
  border-bottom: 2px solid #111;
}
.posts-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 36px;
}
.posts-header h2 {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 900;
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.posts-header h2 em {
  font-family: inherit;
  font-style: normal;
  color: #ab098c;
}
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .philosophy-band { grid-template-columns: 1fr; padding: 40px 24px; }
  .about-section { grid-template-columns: 1fr; }
  .about-photo { border-right: none; border-bottom: 2px solid #111; }
  .about-copy { padding: 40px 24px; }
  .statement-band { padding: 40px 24px; }
  .posts-section { padding: 40px 24px; }
  .posts-grid { grid-template-columns: 1fr; }
}

/* ============================================
   ASTRA OVERRIDES — Hide default page header gray band
   ============================================ */

/* Hide the gray band Astra puts above page/post titles */
.ast-page-header-content,
.ast-archive-description,
.entry-banner,
.page-header,
.ast-title-bar {
  display: none !important;
}

/* Remove any extra padding Astra adds to the main content area */
.ast-container .entry-header {
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* ============================================
   CATEGORY ARCHIVE PAGES — Editorial styling
   Mirrors homepage philosophy-band per category
   ============================================ */

/* Archive header band — full color, two-column */
.cob-archive-band {
  padding: 56px 60px;
  border-bottom: 2px solid var(--black);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.cob-archive-band.travel  { background: var(--olive); }
.cob-archive-band.miles   { background: var(--magenta); }
.cob-archive-band.mental  { background: var(--orange); }

.cob-archive-band h2 {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 900;
  font-size: 2.6rem;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1.1;
}

.cob-archive-band h2 .accent {
  color: #111;
}

.cob-archive-band p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.75;
}

/* Post grid on archive pages */
.cob-archive-grid {
  padding: 56px 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  border-bottom: 2px solid var(--black);
  justify-content: start;
}

/* Pagination */
.cob-pagination {
  padding: 40px 60px 60px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  border-bottom: 2px solid var(--black);
}

.cob-pagination a,
.cob-pagination span {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--black);
  border: 2px solid var(--black);
  background: var(--white);
  min-width: 48px;
  text-align: center;
  display: inline-block;
  line-height: 1.2;
  white-space: nowrap;
}

.cob-pagination a:hover {
  background: var(--off-white);
}

.cob-pagination .current {
  background: var(--black);
  color: var(--white);
}

.cob-pagination .dots {
  border: none;
  background: transparent;
  padding: 10px 4px;
}

@media (max-width: 768px) {
  .cob-archive-band {
    grid-template-columns: 1fr;
    padding: 40px 24px;
    gap: 20px;
  }
  .cob-archive-band h2 { font-size: 1.8rem; }
  .cob-archive-band p { font-size: 1rem; }
  .cob-archive-grid { padding: 40px 24px; grid-template-columns: 1fr; }
  .cob-pagination { padding: 32px 24px 48px; }
}

/* ============================================
   LANDING PAGE HERO TIGHTENING — override inline styles
   ============================================ */

/* Mental Wealth — shorten the "dress rehearsal" black band */
.mw-dress-band {
  padding: 44px 60px !important;
}
.mw-dress-band p {
  font-size: 2.6rem !important;
  line-height: 1.15 !important;
  margin: 0 !important;
  padding: 0 !important;
}
.mw-dress-band p + p {
  margin-top: 12px !important;
}

@media (max-width: 768px) {
  .mw-dress-band { padding: 32px 24px !important; }
  .mw-dress-band p { font-size: 1.6rem !important; }
  .mw-dress-band p + p { margin-top: 8px !important; }
}

/* Miles & Money — tighten hero, smaller cards with breathing room */
.mm-hero {
  min-height: 0 !important;
}
.mm-hero-left {
  padding: 44px 52px !important;
}
.mm-hero-right {
  padding: 32px 28px !important;
  gap: 12px !important;
}
.mm-card {
  padding: 18px 18px !important;
}
.mm-card h3 {
  font-size: 0.9rem !important;
  margin-bottom: 4px !important;
}
.mm-card p {
  font-size: 0.78rem !important;
}
.mm-card-dot {
  width: 12px !important;
  height: 12px !important;
  margin-bottom: 8px !important;
}

@media (max-width: 768px) {
  .mm-hero-left { padding: 36px 24px !important; }
  .mm-hero-right { padding: 24px !important; }
}


/* MailerLite form container — constrain width, no border overrides */
.shift-section .ml-form-embedWrapper,
.shift-section .ml-form-embedContainer {
  max-width: 500px !important;
  margin: 0 auto !important;
}

/* Kill grey border on MailerLite input fields — the source of the visible "oval" */
.shift-section input.form-control {
  border: none !important;
}

/* Constrain the MailerLite form to a sensible width */
.shift-section .ml-form-embedContainer {
  max-width: 500px !important;
  margin: 0 auto !important;
}
