:root {
  --navy: #0e2236;
  --navy-deep: #091726;
  --teal: #0e5b64;
  --teal-soft: #d7eef0;
  --sand: #f6efe4;
  --paper: #fffdf8;
  --blush: #f2d8c6;
  --gold: #d7ac56;
  --ink: #1e2d3c;
  --muted: #617081;
  --line: rgba(14, 34, 54, 0.1);
  --shadow: 0 24px 70px rgba(7, 20, 33, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1180px, calc(100% - 2.4rem));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(214, 172, 86, 0.18), transparent 24rem),
    radial-gradient(circle at top right, rgba(14, 91, 100, 0.14), transparent 26rem),
    linear-gradient(180deg, #fffcf7 0%, #f8f2e8 100%);
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-shell {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(255, 252, 247, 0.84);
  border-bottom: 1px solid rgba(14, 34, 54, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.custom-logo-link img {
  width: 68px;
  max-height: 68px;
  object-fit: contain;
}

.site-brand__logo {
  width: 68px;
  height: 68px;
  object-fit: contain;
  flex: 0 0 auto;
}

.site-brand__mark {
  width: 3.2rem;
  height: 3.2rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.site-brand__text {
  display: grid;
  gap: 0.1rem;
}

.site-brand__title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.site-brand__tagline {
  color: var(--muted);
  font-size: 0.83rem;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.menu-list,
.footer-menu {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-nav a {
  position: relative;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 600;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.4rem;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  transition: transform 180ms ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    color 160ms ease,
    border-color 160ms ease;
}

.header-cta,
.button-primary {
  padding: 0.9rem 1.35rem;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  color: #fff;
  box-shadow: 0 18px 32px rgba(14, 34, 54, 0.16);
}

.button-secondary {
  padding: 0.9rem 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.18);
}

.header-cta:hover,
.header-cta:focus-visible,
.button-primary:hover,
.button-primary:focus-visible,
.button-secondary:hover,
.button-secondary:focus-visible {
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}

.menu-toggle span:not(.screen-reader-text) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--navy);
}

.hero-section {
  padding: 3.2rem 0 1.4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 1.6rem;
  align-items: stretch;
}

.hero-copy,
.hero-visual {
  min-width: 0;
}

.hero-copy {
  position: relative;
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: var(--radius-xl);
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.14), transparent 45%),
    linear-gradient(145deg, rgba(215, 172, 86, 0.24), transparent 60%),
    linear-gradient(135deg, var(--navy), var(--navy-deep));
  box-shadow: var(--shadow);
}

.hero-copy::after {
  content: "";
  position: absolute;
  right: -5rem;
  bottom: -6rem;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.16), transparent 68%);
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.74);
}

.eyebrow-dark {
  color: var(--teal);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 1;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.9rem, 7vw, 5.7rem);
  max-width: 10ch;
  text-wrap: balance;
}

h2 {
  font-size: clamp(2rem, 4.2vw, 3.45rem);
}

h3 {
  font-size: clamp(1.5rem, 2vw, 2rem);
}

.hero-text,
.section-heading p,
.feature-card p,
.post-card p,
.journal-feature__content p,
.planning-panel p,
.instagram-copy p,
.page-hero p,
.entry-content,
.site-footer p {
  line-height: 1.72;
  font-size: 1.02rem;
}

.hero-text {
  max-width: 36rem;
  margin: 1.35rem 0 0;
  color: rgba(255, 255, 255, 0.86);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0;
  margin: 1.6rem 0 0;
  list-style: none;
}

.hero-badges li {
  padding: 0.62rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.93rem;
}

.hero-visual {
  display: grid;
  gap: 1rem;
}

.hero-image-card,
.hero-stats,
.feature-card,
.journal-feature,
.post-card,
.planning-panel,
.instagram-feed-shell,
.entry-card,
.page-hero__content,
.instagram-copy {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.hero-image-card {
  min-height: 32rem;
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
  background:
    linear-gradient(180deg, rgba(9, 23, 38, 0.04), rgba(9, 23, 38, 0.82)),
    linear-gradient(135deg, rgba(14, 91, 100, 0.2), rgba(14, 34, 54, 0.84)),
    linear-gradient(135deg, #d7eef0, #accdcb);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-image-card__overlay {
  width: 100%;
  padding: 1.3rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 248, 0.92);
  color: var(--ink);
}

.hero-image-card__overlay p {
  margin: 0 0 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
  font-weight: 800;
  color: var(--teal);
}

.hero-image-card__overlay a {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.65rem;
  font-weight: 700;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(14, 34, 54, 0.07);
}

.hero-stats > div,
.hero-stat-card {
  padding: 1rem;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(246, 239, 228, 0.9), rgba(255, 255, 255, 0.9));
}

.hero-stat-card {
  display: block;
  color: inherit;
  text-decoration: none;
}

.stat-value {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 700;
}

.stat-label {
  display: block;
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.45;
}

.signal-strip {
  padding: 0.2rem 0 1.4rem;
}

.signal-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.signal-strip p {
  margin: 0;
  padding: 1rem 1.25rem;
  border-radius: 999px;
  text-align: center;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(14, 34, 54, 0.08);
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 700;
}

.section-shell {
  padding: 1.6rem 0 3rem;
}

.section-shell--contrast {
  background:
    radial-gradient(circle at top right, rgba(215, 172, 86, 0.14), transparent 24rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.66), rgba(240, 231, 221, 0.9));
}

.section-shell--soft {
  background:
    linear-gradient(180deg, rgba(215, 238, 240, 0.68), rgba(255, 255, 255, 0.9));
}

.section-heading {
  max-width: 44rem;
  margin-bottom: 1.6rem;
}

.section-heading p {
  margin: 1rem 0 0;
  color: var(--muted);
}

.feature-grid,
.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.feature-card,
.post-card,
.entry-card,
.instagram-feed-shell {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(14, 34, 54, 0.08);
}

.feature-card {
  padding: 1.55rem;
}

.feature-card h3 {
  margin-bottom: 0.8rem;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
}

.journal-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(310px, 0.84fr);
  gap: 1.25rem;
}

.journal-feature {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(14, 34, 54, 0.08);
}

.journal-feature__image img,
.post-card__image img,
.article-hero__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: var(--media-position, center center);
  transform: scale(var(--media-scale, 1));
  transform-origin: center;
}

.journal-feature__image {
  display: block;
  aspect-ratio: 16 / 9;
  min-width: 0;
  max-height: 24rem;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(14, 91, 100, 0.12), rgba(215, 172, 86, 0.16));
}

.journal-feature__content,
.post-card__content {
  min-width: 0;
  padding: 1.4rem;
}

.journal-feature__content {
  display: grid;
  align-content: start;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.96);
}

.post-kicker,
.post-card__meta,
.article-meta,
.entry-tags a {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.journal-feature__content h3 {
  margin: 0.55rem 0 0.75rem;
  font-size: clamp(1.95rem, 3vw, 2.7rem);
}

.journal-stack {
  display: grid;
  gap: 1rem;
}

.post-card--compact {
  display: grid;
  grid-template-columns: minmax(150px, 9.5rem) minmax(0, 1fr);
  align-items: stretch;
}

.post-card--compact .post-card__image {
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
}

.post-card__image {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  min-height: 100%;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(14, 91, 100, 0.12), rgba(215, 172, 86, 0.16));
}

.post-card__image img {
  height: 100%;
}

.post-card__content h2,
.post-card__content h3 {
  margin: 0.35rem 0 0.7rem;
  line-height: 1.05;
}

.post-card__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
}

.post-card__content p:last-child,
.journal-feature__content p:last-child {
  margin-bottom: 0;
}

.post-card__content p,
.journal-feature__content p {
  margin: 0;
  color: var(--muted);
}

.post-card__content h2,
.post-card__content h3,
.journal-feature__content h3 {
  overflow-wrap: anywhere;
}

.blwt-media-frame {
  --media-scale: 1;
  --media-position: center center;
}

.blwt-media-frame--portrait {
  --media-position: center 34%;
}

.blwt-media-frame--tall {
  --media-scale: 1.16;
  --media-position: center 36%;
}

.blwt-media-frame--letterboxed {
  --media-scale: 2.05;
  --media-position: center 50%;
  background: #ece6dc;
}

.text-link {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--teal);
  font-weight: 800;
}

.chip-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.chip-cloud__item {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.95rem 1.15rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(14, 34, 54, 0.08);
  box-shadow: 0 12px 26px rgba(14, 34, 54, 0.08);
}

.chip-cloud__item span {
  font-weight: 800;
}

.chip-cloud__item small {
  color: var(--muted);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(0, 1fr);
  gap: 1.2rem;
  align-items: center;
}

.story-photo-card,
.planner-hero__image {
  overflow: hidden;
  aspect-ratio: 5 / 4;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  border: 1px solid rgba(14, 34, 54, 0.08);
}

.story-photo-card img,
.planner-hero__image img {
  width: 100%;
  height: 100%;
  min-height: 0;
  display: block;
  object-fit: cover;
  object-position: center 38%;
}

.story-copy {
  padding: 1.9rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(14, 34, 54, 0.08);
  box-shadow: var(--shadow);
}

.story-copy p {
  margin: 1rem 0 0;
  color: var(--muted);
}

.story-list,
.planning-checklist,
.planner-list {
  display: grid;
  gap: 0.8rem;
  padding: 0;
  margin: 1.4rem 0 0;
  list-style: none;
}

.story-list li,
.planning-checklist li,
.planner-list li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--ink);
  line-height: 1.65;
}

.story-list li::before,
.planning-checklist li::before,
.planner-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--teal));
}

.story-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.instagram-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1.22fr);
  gap: 1.2rem;
  align-items: stretch;
}

.instagram-copy {
  padding: 1.7rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.92));
  border: 1px solid rgba(14, 34, 54, 0.08);
}

.highlight-tags span,
.entry-tags a {
  display: inline-flex;
  padding: 0.58rem 0.9rem;
  border-radius: 999px;
  background: var(--paper);
  border: 1px solid rgba(14, 34, 54, 0.09);
}

.social-channel-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin-top: 1.35rem;
}

.social-channel-card {
  display: grid;
  gap: 0.55rem;
  min-width: 0;
  padding: 1rem;
  border-radius: 1.3rem;
  color: var(--ink);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(14, 34, 54, 0.08);
  box-shadow: 0 14px 28px rgba(14, 34, 54, 0.08);
}

.social-channel-card--alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(237, 244, 246, 0.92));
}

.social-channel-card__network {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  line-height: 1;
  text-transform: uppercase;
  color: var(--teal);
}

.social-channel-card--facebook strong {
  font-size: clamp(0.95rem, 1.65vw, 1.08rem);
}

.social-channel-card__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  color: var(--navy);
  background: rgba(14, 91, 100, 0.08);
  border: 1px solid rgba(14, 34, 54, 0.08);
}

.social-channel-card__icon,
.footer-social-link__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social-channel-card__icon svg,
.footer-social-link__icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.social-channel-card strong {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 800;
  line-height: 1.15;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.social-channel-card small {
  color: var(--muted);
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.social-proof {
  margin: 1rem 0 0;
  color: var(--muted);
  font-weight: 700;
}

.instagram-feed-shell {
  padding: 1rem;
}

.instagram-live-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.instagram-tile {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  min-height: 0;
  overflow: hidden;
  border-radius: 1.2rem;
  background: linear-gradient(145deg, rgba(14, 91, 100, 0.16), rgba(215, 172, 86, 0.22));
}

.instagram-tile img {
  width: 100%;
  height: 100%;
  min-height: 0;
  display: block;
  object-fit: cover;
  object-position: center center;
  transition: transform 220ms ease;
}

.instagram-tile__meta {
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.75rem;
  display: grid;
  gap: 0.2rem;
  padding: 0.7rem 0.8rem;
  border-radius: 1rem;
  color: #fff;
  background: linear-gradient(180deg, rgba(9, 23, 38, 0.24), rgba(9, 23, 38, 0.8));
}

.instagram-tile__meta strong {
  font-size: 0.9rem;
}

.instagram-tile__meta small {
  line-height: 1.4;
}

.instagram-tile:hover img,
.instagram-tile:focus-visible img {
  transform: scale(1.04);
}

.instagram-placeholder {
  display: grid;
  gap: 1rem;
  min-height: 100%;
}

.instagram-placeholder__window {
  padding: 1.2rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 245, 236, 0.92));
  border: 1px solid rgba(14, 34, 54, 0.08);
}

.instagram-placeholder__handle {
  margin: 0;
  font-weight: 800;
  color: var(--navy);
}

.instagram-placeholder__bio {
  margin: 0.65rem 0 0;
  color: var(--muted);
}

.instagram-placeholder__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  min-height: 22rem;
}

.instagram-placeholder__grid span {
  border-radius: 1.2rem;
  background:
    linear-gradient(145deg, rgba(14, 91, 100, 0.16), rgba(215, 172, 86, 0.22)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.46));
  border: 1px solid rgba(14, 34, 54, 0.08);
}

.instagram-placeholder__grid span:nth-child(2),
.instagram-placeholder__grid span:nth-child(5) {
  transform: translateY(0.8rem);
}

.planning-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem;
  background:
    linear-gradient(135deg, var(--navy), rgba(14, 91, 100, 0.9));
  color: #fff;
}

.planning-panel__copy {
  max-width: 44rem;
}

.planning-panel p {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.planning-checklist {
  max-width: 38rem;
}

.planning-checklist li {
  color: rgba(255, 255, 255, 0.92);
}

.planning-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.planner-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: 1.25rem;
  align-items: stretch;
}

.planner-hero__copy {
  padding: 2rem;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.14), transparent 45%),
    linear-gradient(145deg, rgba(215, 172, 86, 0.24), transparent 60%),
    linear-gradient(135deg, var(--navy), var(--navy-deep));
  color: #fff;
  box-shadow: var(--shadow);
}

.planner-hero__copy p {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.84);
  max-width: 40rem;
}

.planner-hero__copy h1 {
  max-width: 9ch;
}

.planner-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.planner-hero__tags a {
  display: inline-flex;
  padding: 0.62rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.94);
  text-decoration: none;
}

.planner-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 1.2rem;
  align-items: start;
}

.planner-sidebar {
  display: grid;
  gap: 1rem;
}

.planner-card,
.trip-form-shell {
  padding: 1.6rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(14, 34, 54, 0.08);
  box-shadow: var(--shadow);
}

.planner-card--soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(215, 238, 240, 0.72));
}

.planner-card p {
  margin: 1rem 0 0;
  color: var(--muted);
}

.planner-form-column {
  min-width: 0;
}

.trip-form__notice {
  margin: 0 0 1rem;
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  font-weight: 700;
}

.trip-form__notice--success {
  color: #124024;
  background: rgba(163, 214, 168, 0.35);
  border: 1px solid rgba(49, 167, 59, 0.24);
}

.trip-form__notice--error {
  color: #6c1e25;
  background: rgba(242, 183, 188, 0.36);
  border: 1px solid rgba(207, 46, 46, 0.2);
}

.trip-form {
  display: grid;
  gap: 1.1rem;
}

.trip-form__honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.trip-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
}

.trip-form__field {
  display: grid;
  gap: 0.45rem;
}

.trip-form__field--wide {
  grid-column: 1 / -1;
}

.trip-form__field span {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--ink);
}

.trip-form__party-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.trip-form__subfield {
  display: grid;
  gap: 0.45rem;
}

.trip-form__subfield span {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted);
}

.trip-form__field input,
.trip-form__field select,
.trip-form__field textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(14, 34, 54, 0.12);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.98);
  color: var(--ink);
}

.trip-form__field textarea {
  resize: vertical;
}

.trip-form__field input:focus,
.trip-form__field select:focus,
.trip-form__field textarea:focus {
  outline: 2px solid rgba(14, 91, 100, 0.2);
  border-color: rgba(14, 91, 100, 0.34);
}

.trip-form__consent {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  background: rgba(247, 250, 250, 0.96);
  border: 1px solid rgba(14, 34, 54, 0.08);
}

.trip-form__consent input {
  width: auto;
  margin-top: 0.2rem;
}

.trip-form__consent span {
  margin: 0;
  line-height: 1.55;
}

.trip-form__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
}

.trip-form__actions p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.page-hero {
  padding: 2rem 0 1rem;
}

.page-hero--tight {
  padding-bottom: 0;
}

.page-hero__content {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(14, 34, 54, 0.08);
}

.page-hero__content h1 {
  max-width: 16ch;
  font-size: clamp(2.35rem, 5.6vw, 4.25rem);
  color: var(--navy);
}

.page-hero__content p {
  margin: 1rem 0 0;
  color: var(--muted);
  max-width: 44rem;
}

.page-hero--article {
  padding-bottom: 0;
}

.article-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: 1.3rem;
  align-items: center;
}

.article-hero__copy {
  padding: 1rem 0;
}

.article-hero__copy h1 {
  max-width: 16ch;
  font-size: clamp(2.5rem, 5vw, 4.7rem);
  line-height: 0.94;
  color: var(--navy);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.article-hero__image {
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.prose-shell {
  width: min(900px, calc(100% - 2rem));
}

.entry-card {
  padding: clamp(1.4rem, 3vw, 2.2rem);
}

.entry-content {
  color: var(--ink);
}

.entry-content > *:first-child {
  margin-top: 0;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
  margin-top: 1.8rem;
  margin-bottom: 0.8rem;
  line-height: 1.08;
}

.entry-content p,
.entry-content ul,
.entry-content ol,
.entry-content blockquote {
  margin: 0 0 1.1rem;
}

.entry-content figure {
  margin: 1.4rem 0;
}

.entry-content figcaption {
  margin-top: 0.6rem;
  color: var(--muted);
  font-size: 0.92rem;
  text-align: center;
}

.entry-content a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.entry-content blockquote {
  padding-left: 1.2rem;
  border-left: 3px solid rgba(14, 91, 100, 0.3);
  color: var(--muted);
}

.entry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.6rem;
}

.pagination-wrap {
  margin-top: 2rem;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
  justify-content: center;
}

.pagination .page-numbers {
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(14, 34, 54, 0.1);
  background: rgba(255, 255, 255, 0.84);
}

.pagination .current {
  background: linear-gradient(135deg, var(--teal), var(--navy));
  border-color: transparent;
  color: #fff;
}

.site-footer {
  margin-top: 2rem;
  padding: 2.5rem 0 1.6rem;
  color: rgba(255, 255, 255, 0.78);
  background:
    linear-gradient(145deg, var(--navy), #102a41 58%, #17404f);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 1.4rem;
  align-items: start;
}

.footer-kicker {
  margin: 0 0 0.7rem;
  color: rgba(255, 255, 255, 0.66);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.76rem;
  font-weight: 800;
}

.site-footer h2,
.site-footer h3 {
  color: #fff;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.footer-links ul,
.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0.7rem 0 0;
}

.footer-links li,
.footer-menu li {
  margin-bottom: 0.6rem;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  max-width: 100%;
}

.footer-social-link__icon {
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-social-link span:not(.footer-social-link__icon):not(.screen-reader-text) {
  overflow-wrap: anywhere;
}

.post-card--journal {
  display: flex;
  flex-direction: column;
}

.post-card__image--journal {
  aspect-ratio: 4 / 5;
  min-height: 18rem;
}

.post-card__image-overlay {
  position: absolute;
  inset: auto 0 0;
  display: grid;
  gap: 0.35rem;
  padding: 1.1rem;
  background: linear-gradient(180deg, transparent, rgba(14, 34, 54, 0.82));
  color: #fff;
}

.post-card__image-overlay strong {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.25rem, 2vw, 1.95rem);
  line-height: 0.96;
  text-wrap: balance;
}

.post-card__image-overlay .post-card__meta {
  color: rgba(255, 255, 255, 0.74);
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-callout {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.8rem;
  padding: 1.2rem 1.4rem;
  border-radius: 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(214, 172, 86, 0.14));
}

.footer-callout__copy {
  max-width: 44rem;
}

.footer-callout__copy h3 {
  margin-bottom: 0.5rem;
}

.footer-callout__copy p:last-child {
  margin-bottom: 0;
}

.footer-callout__button {
  align-self: center;
  white-space: nowrap;
}

@media (max-width: 1100px) {
  .hero-grid,
  .story-grid,
  .journal-grid,
  .instagram-panel,
  .planner-hero,
  .planner-layout,
  .article-hero,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .archive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .journal-feature {
    grid-template-columns: 1fr;
  }

  .planning-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-callout {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 960px) {
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .header-nav {
    position: absolute;
    left: 1.2rem;
    right: 1.2rem;
    top: calc(100% + 0.6rem);
    display: none;
    padding: 1rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 253, 248, 0.98);
    border: 1px solid rgba(14, 34, 54, 0.08);
    box-shadow: var(--shadow);
  }

  .header-nav.is-open {
    display: grid;
    gap: 1rem;
  }

  .menu-list {
    display: grid;
    gap: 0.8rem;
  }

  .feature-grid,
  .archive-grid,
  .signal-strip__grid {
    grid-template-columns: 1fr;
  }

  .hero-stats,
  .footer-links,
  .trip-form__grid {
    grid-template-columns: 1fr;
  }

  .trip-form__party-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  body {
    background:
      radial-gradient(circle at top, rgba(214, 172, 86, 0.16), transparent 16rem),
      linear-gradient(180deg, #fffcf7 0%, #f8f2e8 100%);
  }

  .container {
    width: min(100% - 1.2rem, 100%);
  }

  .hero-section {
    padding-top: 1.4rem;
  }

  .hero-copy,
  .page-hero__content,
  .planner-card,
  .planner-hero__copy,
  .story-copy,
  .planning-panel,
  .instagram-copy,
  .entry-card,
  .trip-form-shell {
    padding: 1.3rem;
    border-radius: 1.5rem;
  }

  .hero-image-card {
    min-height: 22rem;
  }

  .page-hero__content h1,
  .article-hero__copy h1 {
    max-width: none;
    font-size: clamp(2.15rem, 10.5vw, 3.4rem);
  }

  .post-card--compact {
    grid-template-columns: 1fr;
  }

  .journal-feature {
    grid-template-columns: 1fr;
  }

  .trip-form__party-grid,
  .social-channel-grid {
    grid-template-columns: 1fr;
  }

  .instagram-placeholder__grid {
    min-height: 14rem;
  }

  .instagram-live-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-meta {
    flex-direction: column;
  }

  .footer-callout__button {
    width: 100%;
    justify-content: center;
    white-space: normal;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy,
  .hero-image-card,
  .feature-card,
  .journal-feature,
  .post-card,
  .story-copy,
  .instagram-copy,
  .planning-panel,
  .planner-card,
  .trip-form-shell {
    animation: rise 520ms ease both;
  }

  .feature-card:nth-child(2),
  .post-card:nth-child(2) {
    animation-delay: 80ms;
  }

  .feature-card:nth-child(3),
  .post-card:nth-child(3) {
    animation-delay: 140ms;
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
