:root {
  --cream: #fbf8ee;
  --paper: #f3f0e5;
  --paper-2: #ece8da;
  --white: #fffdf7;
  --ink: #171710;
  --muted: #70685c;
  --rust: #a55236;
  --rust-dark: #803d29;
  --sage: #d8e89a;
  --sage-dark: #69722b;
  --gold: #d5a816;
  --line: rgba(23, 23, 16, 0.1);
  --shadow: 0 20px 45px rgba(48, 42, 27, 0.09);
  --display: "Epilogue", sans-serif;
  --body: "Be Vietnam Pro", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.55;
}

button,
a,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

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

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

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

.site-header {
  align-items: center;
  background: rgba(251, 248, 238, 0.94);
  display: flex;
  gap: 28px;
  justify-content: space-between;
  padding: 20px clamp(20px, 5vw, 74px);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
}

.brand {
  align-items: center;
  display: inline-flex;
  flex-shrink: 0;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 800;
  gap: 10px;
  letter-spacing: -0.03em;
}

.brand-mark {
  align-items: center;
  background: var(--rust);
  border-radius: 50%;
  color: white;
  display: inline-flex;
  font-family: var(--body);
  font-size: 10px;
  height: 28px;
  justify-content: center;
  letter-spacing: 0;
  width: 28px;
}

.main-nav {
  align-items: center;
  display: flex;
  gap: clamp(16px, 3vw, 34px);
  margin-left: auto;
}

.main-nav a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  position: relative;
}

.main-nav a::after {
  background: var(--rust);
  bottom: -9px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  width: 100%;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--rust-dark);
}

.main-nav a.active::after,
.main-nav a:hover::after {
  transform: scaleX(1);
}

.nav-post-link {
  background: var(--rust);
  border-radius: 999px;
  color: white !important;
  padding: 7px 12px;
}

.nav-post-link::after {
  display: none;
}

.nav-post-link:hover {
  background: var(--rust-dark);
}

.header-actions {
  align-items: center;
  display: flex;
  gap: 10px;
}

.icon-button,
.avatar-button {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--rust-dark);
  display: inline-flex;
  justify-content: center;
}

.icon-button {
  font-size: 23px;
  height: 34px;
  position: relative;
  width: 34px;
}

.icon-button:hover {
  background: var(--paper-2);
  border-radius: 50%;
}

.notification-dot {
  background: var(--rust);
  border: 2px solid var(--cream);
  border-radius: 50%;
  height: 8px;
  position: absolute;
  right: 5px;
  top: 5px;
  width: 8px;
}

.notification-count {
  align-items: center;
  background: var(--rust);
  border: 2px solid var(--cream);
  border-radius: 999px;
  color: white;
  display: flex;
  font-size: 8px;
  font-weight: 700;
  height: 17px;
  justify-content: center;
  min-width: 17px;
  padding: 0 3px;
  position: absolute;
  right: 0;
  top: 0;
}

.notification-count.empty {
  display: none;
}

.cart-count {
  align-items: center;
  background: var(--rust);
  border: 2px solid var(--cream);
  border-radius: 999px;
  color: white;
  display: flex;
  font-size: 8px;
  font-weight: 700;
  height: 17px;
  justify-content: center;
  min-width: 17px;
  padding: 0 3px;
  position: absolute;
  right: 0;
  top: 0;
}

.cart-count.empty {
  display: none;
}

.avatar-button {
  background: var(--ink);
  border: 2px solid var(--rust);
  border-radius: 50%;
  color: white;
  font-size: 11px;
  font-weight: 700;
  height: 36px;
  width: 36px;
}

.avatar-button.has-photo {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

#app {
  min-height: 70vh;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 420ms ease, transform 420ms ease;
}

#app.route-leave {
  opacity: 0;
  transform: translateY(8px);
}

#app.route-enter {
  opacity: 0;
  transform: translateY(8px);
}

.page-back {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--muted);
  display: flex;
  font-size: 12px;
  gap: 7px;
  margin: 28px auto -28px;
  max-width: 1132px;
  padding: 7px 0;
  width: calc(100% - clamp(40px, 10vw, 148px));
}

.page-back:hover {
  color: var(--rust);
}

.page {
  margin: 0 auto;
  max-width: 1280px;
  padding: clamp(42px, 7vw, 88px) clamp(20px, 5vw, 74px) 100px;
}

.eyebrow {
  color: var(--rust);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
  letter-spacing: -0.055em;
  line-height: 1.05;
}

h1 {
  font-size: clamp(44px, 7vw, 92px);
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(32px, 4vw, 56px);
}

h3 {
  font-size: 22px;
}

.muted {
  color: var(--muted);
}

.button {
  align-items: center;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  gap: 9px;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:disabled,
.product-switcher button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
  transform: none;
}

.product-switcher button:disabled:hover {
  background: transparent;
  box-shadow: none;
}

.button.primary {
  background: var(--rust);
  box-shadow: 0 10px 22px rgba(165, 82, 54, 0.18);
  color: white;
}

.button.primary:hover {
  background: var(--rust-dark);
}

.button.secondary {
  background: var(--paper-2);
  color: var(--ink);
}

.button.small {
  min-height: 36px;
  padding: 0 14px;
}

.hero {
  align-items: end;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  min-height: 580px;
}

.hero-copy {
  padding-bottom: 42px;
}

.hero-copy h1 {
  max-width: 620px;
}

.hero-copy h1 em {
  color: var(--rust);
  font-family: Georgia, serif;
  font-weight: 400;
}

.hero-copy p {
  color: var(--muted);
  font-size: 17px;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-art {
  min-height: 500px;
  position: relative;
}

.hero-art::before {
  background: var(--sage);
  border-radius: 50%;
  content: "";
  height: 190px;
  left: -36px;
  position: absolute;
  top: 44px;
  width: 190px;
}

.hero-photo {
  border-radius: 18px;
  box-shadow: var(--shadow);
  height: 500px;
  object-fit: cover;
  position: relative;
  transform: rotate(2deg);
}

.hero-note {
  background: var(--white);
  border: 8px solid var(--white);
  bottom: 16px;
  box-shadow: var(--shadow);
  left: -22px;
  position: absolute;
  transform: rotate(-5deg);
  width: 170px;
}

.hero-note img {
  aspect-ratio: 1;
  object-fit: cover;
}

.hero-note span {
  display: block;
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  padding: 8px 5px 4px;
  text-align: center;
}

.section {
  margin-top: clamp(64px, 10vw, 132px);
}

.section-heading {
  align-items: end;
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.text-link {
  color: var(--rust);
  font-size: 13px;
  font-weight: 700;
}

.text-link:hover {
  text-decoration: underline;
}

.feature-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
}

.story-card {
  min-width: 0;
}

.image-button {
  background: transparent;
  border: 0;
  display: block;
  padding: 0;
  text-align: left;
  width: 100%;
}

.image-button:hover img {
  filter: saturate(1.08);
  transform: translateY(-2px);
}

.story-image {
  border-radius: 14px;
  height: 330px;
  object-fit: cover;
  transition: filter 180ms ease, transform 180ms ease;
}

.story-card:first-child .story-image {
  height: 450px;
}

.story-card h3 {
  font-size: 18px;
  letter-spacing: -0.04em;
  margin: 14px 0 4px;
}

.story-card p {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 0;
}

.tag {
  background: var(--sage);
  border-radius: 3px;
  color: #4b5521;
  display: inline-flex;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 8px;
  text-transform: uppercase;
}

.tag.rust {
  background: #f0d1c5;
  color: var(--rust-dark);
}

.story-meta {
  align-items: center;
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.story-meta .tag {
  margin: 0;
}

.story-meta span:last-child {
  color: var(--muted);
  font-size: 11px;
}

.manifesto {
  align-items: center;
  background: var(--rust);
  border-radius: 18px;
  color: white;
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr 0.7fr;
  overflow: hidden;
  padding: clamp(30px, 5vw, 66px);
  position: relative;
}

.manifesto::after {
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  content: "";
  height: 360px;
  position: absolute;
  right: -110px;
  top: -120px;
  width: 360px;
}

.manifesto h2 {
  margin-bottom: 16px;
  max-width: 590px;
}

.manifesto p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 520px;
}

.manifesto .button {
  background: white;
  color: var(--rust-dark);
  justify-self: end;
  position: relative;
  z-index: 1;
}

.member-callout {
  align-items: center;
  background: var(--paper);
  border-radius: 18px;
  display: flex;
  gap: 30px;
  justify-content: space-between;
  padding: clamp(28px, 5vw, 52px);
}

.member-callout h2 {
  font-size: clamp(30px, 4vw, 48px);
  margin: 12px 0;
}

.member-callout p {
  color: var(--muted);
  margin-bottom: 0;
  max-width: 650px;
}

.home-split {
  align-items: center;
  display: grid;
  gap: 50px;
  grid-template-columns: 0.9fr 1.1fr;
}

.home-split h2 {
  margin-bottom: 20px;
}

.home-split p {
  color: var(--muted);
  max-width: 500px;
}

.postcard-teaser {
  background: var(--paper);
  border-radius: 18px;
  display: grid;
  gap: 18px;
  grid-template-columns: 1.15fr 0.85fr;
  overflow: hidden;
  padding: 18px;
}

.postcard-teaser img {
  border-radius: 12px;
  height: 250px;
  object-fit: cover;
}

.postcard-teaser-copy {
  align-self: end;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 6px 10px 0;
}

.postcard-teaser-copy strong {
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.postcard-teaser-copy > span:not(.tag) {
  color: var(--muted);
  font-size: 12px;
}

.provider-link {
  color: var(--rust);
  font-size: 11px;
  font-weight: 700;
}

.provider-link:hover,
.provider-credit:hover,
.provider-notice a:hover,
.checkout-provider a:hover {
  text-decoration: underline;
}

.mini-map {
  background:
    radial-gradient(circle at 30% 35%, rgba(255, 255, 255, 0.55) 0 2px, transparent 3px),
    radial-gradient(circle at 72% 65%, rgba(255, 255, 255, 0.45) 0 2px, transparent 3px),
    linear-gradient(135deg, #b9d7b9, #8cc9c0 52%, #f2edbf);
  border-radius: 18px;
  min-height: 320px;
  overflow: hidden;
  position: relative;
}

.mini-map::before {
  background: linear-gradient(150deg, transparent 40%, rgba(255, 255, 255, 0.35) 40% 42%, transparent 42% 59%, rgba(255, 255, 255, 0.32) 59% 61%, transparent 61%);
  content: "";
  inset: 0;
  opacity: 0.7;
  position: absolute;
}

.map-pin {
  align-items: center;
  background: var(--rust);
  border: 4px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  box-shadow: 0 0 0 12px rgba(165, 82, 54, 0.12);
  color: white;
  display: flex;
  font-size: 11px;
  height: 24px;
  justify-content: center;
  position: absolute;
  width: 24px;
}

.map-pin.one {
  left: 30%;
  top: 33%;
}

.map-pin.two {
  left: 66%;
  top: 54%;
}

.map-pin.three {
  left: 49%;
  top: 73%;
}

.map-label {
  background: rgba(255, 253, 247, 0.88);
  border-radius: 10px;
  bottom: 18px;
  left: 18px;
  padding: 12px 15px;
  position: absolute;
  width: 190px;
}

.map-label strong {
  display: block;
  font-family: var(--display);
  font-size: 13px;
}

.map-label span {
  color: var(--muted);
  font-size: 11px;
}

.page-header {
  align-items: end;
  display: flex;
  gap: 30px;
  justify-content: space-between;
  margin-bottom: 44px;
}

.page-header h1 {
  font-size: clamp(40px, 5.8vw, 76px);
  margin-bottom: 12px;
}

.page-header p {
  color: var(--muted);
  margin-bottom: 0;
  max-width: 560px;
}

.page-header-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.filter-bar {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 34px;
}

.filter-button {
  background: var(--paper);
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  font-size: 11px;
  padding: 9px 14px;
}

.filter-button.active,
.filter-button:hover {
  background: var(--sage);
  color: var(--ink);
}

.explore-grid {
  column-count: 3;
  column-gap: 18px;
}

.explore-card {
  break-inside: avoid;
  margin-bottom: 28px;
}

.explore-card img {
  border-radius: 14px;
  height: auto;
  max-height: 520px;
  object-fit: cover;
}

.explore-card:nth-child(2n) img {
  max-height: 350px;
}

.explore-card h3 {
  font-size: 18px;
  margin: 12px 5px 3px;
}

.explore-card p {
  color: var(--muted);
  font-size: 12px;
  margin: 0 5px;
}

.explore-card .card-footer {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 10px 5px 0;
}

.heart-button {
  background: var(--paper);
  border: 0;
  border-radius: 50%;
  color: var(--rust-dark);
  font-size: 17px;
  height: 32px;
  width: 32px;
}

.heart-button.active {
  background: #f0d1c5;
}

.map-page {
  padding-top: 24px;
}

.map-experience {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.3), transparent 42%),
    linear-gradient(135deg, #88c2bc, #aad4b0 52%, #f1efbd);
  border-radius: 20px;
  min-height: 660px;
  overflow: hidden;
  position: relative;
}

.map-experience::before,
.map-experience::after {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 45%;
  content: "";
  inset: 12% 8%;
  position: absolute;
  transform: rotate(-20deg);
}

.map-experience::after {
  inset: 30% 20% 8%;
  transform: rotate(23deg);
}

.map-panel {
  background: rgba(255, 253, 247, 0.9);
  border-radius: 16px;
  box-shadow: var(--shadow);
  left: 24px;
  padding: 25px;
  position: absolute;
  top: 24px;
  width: min(360px, calc(100% - 48px));
  z-index: 2;
}

.map-panel h2 {
  color: var(--rust-dark);
  font-size: 26px;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.map-search {
  background: var(--paper);
  border: 0;
  border-radius: 10px;
  padding: 13px 14px;
  width: 100%;
}

.map-result-list {
  display: grid;
  gap: 8px;
  margin-top: 12px;
  max-height: 280px;
  overflow-y: auto;
}

.map-search-result {
  align-items: center;
  background: var(--white);
  border: 0;
  border-radius: 9px;
  display: grid;
  gap: 10px;
  grid-template-columns: 48px 1fr auto;
  padding: 8px;
  text-align: left;
}

.map-search-result:hover {
  background: var(--paper-2);
}

.map-search-result img {
  border-radius: 7px;
  height: 42px;
  object-fit: cover;
  width: 48px;
}

.map-search-result > span:nth-child(2) {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.map-search-result strong {
  font-family: var(--display);
  font-size: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.map-search-result small {
  color: var(--muted);
  font-size: 9px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.map-search-empty {
  color: var(--muted);
  font-size: 12px;
  padding: 14px 3px;
}

.map-connections {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 15px;
}

.map-connections a {
  background: var(--paper);
  border-radius: 999px;
  color: var(--rust);
  font-size: 10px;
  font-weight: 700;
  padding: 7px 9px;
}

.arrivals {
  margin-top: 24px;
}

.arrival {
  align-items: center;
  background: transparent;
  border: 0;
  display: flex;
  gap: 10px;
  margin-top: 12px;
  padding: 0;
  text-align: left;
  width: 100%;
}

.arrival img {
  border-radius: 8px;
  height: 42px;
  object-fit: cover;
  width: 48px;
}

.arrival strong {
  display: block;
  font-family: var(--display);
  font-size: 13px;
}

.arrival span {
  color: var(--muted);
  font-size: 11px;
}

.map-controls {
  bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: absolute;
  right: 24px;
  z-index: 2;
}

.map-controls button {
  background: rgba(255, 253, 247, 0.9);
  border: 0;
  border-radius: 10px;
  color: var(--rust-dark);
  font-size: 20px;
  height: 44px;
  width: 44px;
}

.map-controls button:hover {
  background: white;
}

.map-pin.large {
  height: 26px;
  width: 26px;
  z-index: 1;
}

.trip-layout {
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.75fr);
}

.trip-canvas {
  background: #dce3ce;
  border-radius: 18px;
  min-height: 680px;
  overflow: hidden;
  position: relative;
}

.trip-canvas img {
  height: 100%;
  min-height: 680px;
  object-fit: cover;
  opacity: 0.9;
}

.trip-note {
  background: rgba(255, 253, 247, 0.86);
  border-radius: 12px;
  left: 28px;
  padding: 14px 17px;
  position: absolute;
}

.trip-note.one {
  left: 31%;
  top: 32%;
}

.trip-note.two {
  left: 56%;
  top: 52%;
}

.trip-note small {
  color: var(--rust);
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.trip-note strong {
  font-family: var(--display);
}

.trip-sidebar {
  background: var(--paper);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  padding: 26px;
}

.trip-sidebar h2 {
  font-size: 33px;
  margin: 4px 0 8px;
}

.live-status {
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 28px;
}

.live-status::before {
  background: #77bd7b;
  border-radius: 50%;
  content: "";
  display: inline-block;
  height: 8px;
  margin-right: 8px;
  width: 8px;
}

.day-label {
  align-items: center;
  color: var(--rust);
  display: flex;
  font-size: 11px;
  font-weight: 700;
  gap: 12px;
  letter-spacing: 0.12em;
  margin: 20px 0 12px;
  text-transform: uppercase;
}

.day-label::after {
  background: var(--line);
  content: "";
  height: 1px;
  flex: 1;
}

.itinerary-card {
  background: var(--white);
  border-radius: 12px;
  margin-bottom: 12px;
  padding: 18px;
}

.itinerary-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.itinerary-card p {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 12px;
}

.itinerary-card span {
  color: var(--rust);
  font-size: 11px;
  font-weight: 700;
}

.trip-sidebar .button {
  margin-top: auto;
  width: 100%;
}

.journal-header {
  align-items: end;
  display: flex;
  justify-content: space-between;
  margin-bottom: 44px;
}

.journal-header h1 {
  margin-bottom: 12px;
}

.journal-actions {
  display: flex;
  gap: 10px;
}

.journal-layout {
  display: grid;
  gap: 30px;
  grid-template-columns: minmax(0, 1fr) 340px;
}

.journal-entry {
  background: var(--paper);
  border-radius: 18px;
  display: grid;
  gap: 26px;
  grid-template-columns: 0.8fr 1.2fr;
  padding: 26px;
}

.journal-entry.reverse {
  grid-template-columns: 1.1fr 0.9fr;
}

.journal-entry + .journal-entry {
  margin-top: 18px;
}

.journal-entry img {
  border-radius: 12px;
  height: 330px;
  object-fit: cover;
}

.journal-entry.reverse img {
  order: 2;
}

.journal-entry h2 {
  font-size: 32px;
  margin: 20px 0 14px;
}

.journal-entry p {
  color: var(--muted);
  font-family: Georgia, serif;
  font-size: 16px;
}

.journal-entry textarea {
  background: transparent;
  border: 0;
  border-bottom: 2px solid rgba(165, 82, 54, 0.22);
  color: var(--muted);
  font-family: Georgia, serif;
  font-size: 16px;
  min-height: 110px;
  outline: 0;
  padding: 10px 0;
  resize: vertical;
  width: 100%;
}

.journal-entry textarea:focus {
  border-bottom-color: var(--rust);
}

.journal-side {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.side-card {
  background: var(--paper);
  border-radius: 18px;
  padding: 22px;
}

.side-card h3 {
  font-size: 18px;
  margin-bottom: 16px;
}

.side-card img {
  border-radius: 12px;
  height: 190px;
  object-fit: cover;
}

.toggle-row {
  align-items: center;
  display: flex;
  font-size: 13px;
  justify-content: space-between;
  padding: 10px 0;
}

.toggle {
  background: var(--rust);
  border: 0;
  border-radius: 999px;
  height: 20px;
  padding: 3px;
  width: 36px;
}

.toggle::after {
  background: white;
  border-radius: 50%;
  content: "";
  display: block;
  height: 14px;
  transform: translateX(16px);
  transition: transform 180ms ease;
  width: 14px;
}

.toggle.off {
  background: var(--paper-2);
}

.toggle.off::after {
  transform: translateX(0);
}

.community-hero {
  align-items: center;
  display: grid;
  gap: 56px;
  grid-template-columns: 0.9fr 1.1fr;
}

.community-hero h1 {
  margin-bottom: 20px;
}

.community-hero h1 em {
  color: var(--rust);
  font-family: Georgia, serif;
  font-weight: 400;
}

.community-hero p {
  color: var(--muted);
  font-family: Georgia, serif;
  font-size: 17px;
  max-width: 500px;
}

.community-hero img {
  border-radius: 18px;
  height: 500px;
  object-fit: cover;
  transform: rotate(2deg);
}

.principles {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
}

.principle {
  background: var(--paper);
  border-radius: 15px;
  padding: 28px;
}

.principle:nth-child(2) {
  background: var(--white);
}

.principle h3 {
  font-size: 22px;
  margin: 44px 0 12px;
}

.principle p {
  color: var(--muted);
  font-family: Georgia, serif;
  font-size: 14px;
}

.principle-icon {
  align-items: center;
  background: var(--rust);
  border-radius: 50%;
  color: white;
  display: flex;
  font-size: 20px;
  height: 44px;
  justify-content: center;
  width: 44px;
}

.community-posts {
  background: var(--paper);
  border-radius: 18px;
  padding: clamp(26px, 5vw, 52px);
}

.post-feed {
  display: grid;
  gap: 13px;
}

.post-card {
  align-items: center;
  background: var(--white);
  border-radius: 13px;
  display: grid;
  gap: 20px;
  grid-template-columns: 160px minmax(0, 1fr);
  overflow: hidden;
  padding: 12px;
}

.post-card-open,
.post-title-button {
  background: transparent;
  border: 0;
  padding: 0;
  text-align: left;
}

.post-card-image {
  border-radius: 9px;
  display: block;
  overflow: hidden;
}

.post-card-image:hover img {
  transform: scale(1.03);
}

.post-card img {
  border-radius: 9px;
  height: 145px;
  object-fit: cover;
  transition: transform 300ms ease;
}

.post-card h3 {
  font-size: 22px;
  margin: 13px 0 7px;
}

.post-title-button:hover h3 {
  color: var(--rust);
}

.post-card p {
  color: var(--muted);
  font-family: Georgia, serif;
  font-size: 15px;
  margin-bottom: 12px;
}

.post-card small {
  color: var(--muted);
  font-size: 11px;
}

.post-author-row {
  align-items: center;
  display: flex;
  gap: 8px;
}

.post-author-row small strong {
  color: var(--ink);
}

.post-avatar {
  align-items: center;
  background: var(--rust);
  border-radius: 50%;
  color: white;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 10px;
  font-weight: 700;
  height: 28px;
  justify-content: center;
  width: 28px;
}

.post-avatar.large {
  font-size: 16px;
  height: 46px;
  width: 46px;
}

.post-avatar.profile-large {
  font-size: 23px;
  height: 78px;
  width: 78px;
}

.post-avatar.profile-editor-preview {
  font-size: 30px;
  height: 104px;
  width: 104px;
}

.post-avatar img {
  border-radius: inherit;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.post-social-bar {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 14px;
}

.post-social-bar button {
  align-items: center;
  background: var(--paper);
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  display: inline-flex;
  font-size: 11px;
  gap: 5px;
  min-height: 32px;
  padding: 0 11px;
}

.post-social-bar button:hover,
.post-social-bar button.active {
  background: #f0d1c5;
  color: var(--rust-dark);
}

.post-social-bar button.active.dislike {
  background: var(--paper-2);
  color: var(--ink);
}

.post-social-bar button.heart-active,
.post-detail-actions button.heart-active {
  background: #f6d4dc;
  color: #9f2948;
}

.post-social-bar button.heart-active > span:first-child,
.post-detail-actions button.heart-active > span:first-child {
  animation: heart-ding 420ms ease;
}

@keyframes heart-ding {
  0% { transform: scale(0.7); }
  45% { transform: scale(1.35); }
  100% { transform: scale(1); }
}

.posting-as,
.commenting-as {
  align-items: center;
  background: var(--white);
  border-radius: 10px;
  display: flex;
  gap: 10px;
  padding: 12px;
}

.posting-as.full {
  grid-column: 1 / -1;
}

.posting-as > span:last-child,
.commenting-as > span:last-child {
  color: var(--muted);
  font-size: 12px;
}

.posting-as strong,
.commenting-as strong {
  color: var(--ink);
}

.post-detail-page {
  max-width: 1120px;
}

.post-detail {
  background: var(--white);
  border-radius: 16px;
  display: grid;
  gap: clamp(28px, 5vw, 60px);
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  overflow: hidden;
  padding: clamp(18px, 3vw, 34px);
}

.post-detail-media img {
  border-radius: 12px;
  height: min(650px, 70vh);
  min-height: 430px;
  object-fit: cover;
}

.post-detail-copy {
  align-self: center;
}

.post-detail-author {
  align-items: center;
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
}

.post-detail-author > div {
  display: flex;
  flex-direction: column;
}

.post-detail-author strong {
  font-family: var(--display);
}

.post-detail-author span:last-child {
  color: var(--muted);
  font-size: 11px;
}

.post-detail-copy h1 {
  font-size: clamp(38px, 5vw, 62px);
  margin: 18px 0;
}

.post-detail-copy > p {
  color: var(--muted);
  font-family: Georgia, serif;
  font-size: 18px;
  line-height: 1.7;
}

.post-detail-actions {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 32px;
}

.post-detail-actions button {
  align-items: center;
  background: var(--paper);
  border: 0;
  border-radius: 10px;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 2px;
  justify-content: center;
  min-height: 72px;
  padding: 9px;
}

.post-detail-actions button > span {
  font-size: 20px;
}

.post-detail-actions button strong {
  color: var(--ink);
  font-family: var(--display);
  font-size: 13px;
}

.post-detail-actions button small {
  font-size: 9px;
}

.post-detail-actions button:hover,
.post-detail-actions button.active {
  background: #f0d1c5;
  color: var(--rust-dark);
}

.post-detail-actions button.active.dislike {
  background: var(--paper-2);
}

.post-owner-metrics {
  background: var(--paper);
  border-radius: 10px;
  display: grid;
  gap: 7px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 24px;
  padding: 12px;
}

.post-owner-metrics span {
  color: var(--muted);
  font-size: 10px;
  text-align: center;
}

.post-owner-metrics strong {
  color: var(--ink);
  display: block;
  font-family: var(--display);
  font-size: 18px;
}

.post-comments {
  margin: 60px auto 0;
  max-width: 820px;
}

.owner-comment-notice {
  align-items: center;
  background: var(--sage);
  border-radius: 11px;
  color: var(--sage-dark);
  display: flex;
  gap: 11px;
  margin-bottom: 24px;
  padding: 14px;
}

.owner-comment-notice .post-avatar {
  background: var(--sage-dark);
}

.owner-comment-notice > span:last-child {
  font-size: 12px;
}

.comment-form {
  background: var(--paper);
  border-radius: 13px;
  display: grid;
  gap: 13px;
  margin-bottom: 25px;
  padding: 18px;
}

.comment-form > label:not(.comment-field) {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.comment-form > label > span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.comment-form input,
.comment-form textarea {
  background: var(--white);
  border: 0;
  border-bottom: 2px solid rgba(165, 82, 54, 0.2);
  outline: 0;
  padding: 12px;
  width: 100%;
}

.comment-field {
  align-items: end;
  display: flex;
  gap: 9px;
}

.comment-field textarea {
  min-height: 80px;
  resize: vertical;
}

.comment-list {
  display: grid;
  gap: 10px;
}

.comment {
  align-items: start;
  background: var(--white);
  border-radius: 11px;
  display: grid;
  gap: 12px;
  grid-template-columns: 30px 1fr;
  padding: 16px;
}

.comment-thread {
  display: grid;
  gap: 8px;
}

.comment.reply {
  background: var(--paper);
  margin-left: 42px;
}

.comment > div > div {
  align-items: center;
  display: flex;
  gap: 10px;
}

.comment strong {
  font-family: var(--display);
  font-size: 12px;
}

.comment small {
  color: var(--muted);
  font-size: 9px;
}

.comment p {
  color: var(--muted);
  font-size: 13px;
  margin: 7px 0 0;
}

.comment-reply-button {
  background: transparent;
  border: 0;
  color: var(--rust);
  font-size: 10px;
  font-weight: 700;
  margin-top: 8px;
  padding: 0;
}

.comment-reply-button:hover {
  text-decoration: underline;
}

.author-badge {
  background: var(--sage);
  border-radius: 999px;
  color: var(--sage-dark);
  font-size: 8px;
  font-weight: 700;
  padding: 3px 6px;
  text-transform: uppercase;
}

.no-comments {
  background: var(--paper);
  border-radius: 11px;
  color: var(--muted);
  padding: 25px;
  text-align: center;
}

.my-posts-grid {
  display: grid;
  gap: 15px;
}

.my-post-card {
  align-items: center;
  background: var(--white);
  border-radius: 13px;
  display: grid;
  gap: 22px;
  grid-template-columns: 210px minmax(0, 1fr);
  padding: 12px;
}

.my-post-card > button {
  background: transparent;
  border: 0;
  padding: 0;
}

.my-post-card img {
  border-radius: 9px;
  height: 170px;
  object-fit: cover;
}

.my-post-card h3 {
  font-size: 24px;
  margin: 12px 0;
}

.my-post-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 14px;
}

.my-post-stats span {
  background: var(--paper);
  border-radius: 8px;
  color: var(--muted);
  font-size: 10px;
  padding: 8px 10px;
}

.my-post-stats strong {
  color: var(--ink);
  font-family: var(--display);
}

.my-post-card .text-link {
  background: transparent;
  border: 0;
  padding: 0;
}

.post-composer {
  margin: 0 auto;
  max-width: 900px;
}

.post-composer-heading {
  margin-bottom: 38px;
  max-width: 650px;
}

.post-composer-heading h1 {
  margin: 12px 0 16px;
}

.post-composer-heading p {
  color: var(--muted);
  font-size: 17px;
}

.post-form {
  background: var(--paper);
  border-radius: 18px;
  padding: clamp(22px, 5vw, 44px);
}

.post-photo-section {
  background: var(--white);
  border-radius: 13px;
  margin-bottom: 24px;
  padding: 18px;
}

.post-photo-heading {
  align-items: center;
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
}

.post-photo-heading > div {
  display: flex;
  flex-direction: column;
}

.post-photo-heading strong {
  font-family: var(--display);
  font-size: 14px;
}

.post-photo-heading small {
  color: var(--muted);
  font-size: 10px;
}

.post-photo-options {
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr 1fr;
}

.photo-source-button {
  align-items: center;
  background: var(--paper);
  border: 0;
  border-radius: 9px;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  gap: 11px;
  min-height: 68px;
  padding: 12px 14px;
  text-align: left;
}

.photo-source-button:hover {
  background: var(--paper-2);
}

.photo-source-button > span:first-child {
  align-items: center;
  background: var(--sage);
  border-radius: 50%;
  color: var(--sage-dark);
  display: flex;
  flex: 0 0 auto;
  font-size: 19px;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.photo-source-button > span:last-child {
  display: flex;
  flex-direction: column;
}

.photo-source-button strong {
  font-family: var(--display);
  font-size: 12px;
}

.photo-source-button small {
  color: var(--muted);
  font-size: 9px;
}

.post-photo-preview {
  align-items: center;
  background: var(--paper);
  border-radius: 9px;
  display: none;
  gap: 11px;
  grid-template-columns: 64px 1fr auto;
  margin-top: 12px;
  padding: 9px;
}

.post-photo-preview.show {
  display: grid;
}

.post-photo-preview img {
  border-radius: 7px;
  height: 58px;
  object-fit: cover;
  width: 64px;
}

.post-photo-preview span {
  color: var(--muted);
  font-size: 11px;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.post-photo-preview button {
  background: transparent;
  border: 0;
  color: var(--rust);
  font-size: 10px;
  font-weight: 700;
}

.post-photo-picker {
  align-items: center;
  background: var(--white);
  border: 2px dashed rgba(165, 82, 54, 0.28);
  border-radius: 12px;
  color: var(--rust);
  cursor: pointer;
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  padding: 16px;
  transition: background 180ms ease, border-color 180ms ease;
}

.post-photo-picker:hover {
  background: #fffaf0;
  border-color: var(--rust);
}

.post-photo-icon {
  align-items: center;
  background: var(--sage);
  border-radius: 50%;
  color: var(--sage-dark);
  display: flex;
  font-size: 23px;
  height: 40px;
  justify-content: center;
  width: 40px;
}

.post-form-fields {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr 1fr;
}

.post-form-fields .form-field.full {
  grid-column: 1 / -1;
}

.post-form-fields .form-field > span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.post-form-fields input,
.post-form-fields textarea {
  background: var(--white);
  border: 0;
  border-bottom: 2px solid rgba(165, 82, 54, 0.2);
  color: var(--ink);
  outline: 0;
  padding: 14px;
  width: 100%;
}

.rotating-placeholder-field {
  position: relative;
}

.rotating-placeholder-field input::placeholder {
  color: transparent;
}

.rotating-placeholder {
  color: #8b8377;
  left: 14px;
  max-width: calc(100% - 28px);
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  text-overflow: ellipsis;
  top: 50%;
  transform: translateY(-50%);
  transition: opacity 500ms ease, transform 500ms ease;
  white-space: nowrap;
}

.rotating-placeholder.is-fading {
  opacity: 0;
  transform: translateY(-42%);
}

.rotating-placeholder.is-hidden {
  opacity: 0;
}

.post-form-fields textarea {
  min-height: 170px;
  resize: vertical;
}

.post-form-fields input:focus,
.post-form-fields textarea:focus {
  border-bottom-color: var(--rust);
}

.post-form-fields small {
  color: var(--muted);
  font-size: 11px;
  text-align: right;
}

.post-form-footer {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin-top: 26px;
  padding-top: 22px;
}

.post-form-footer .muted {
  font-size: 12px;
}

.camera-capture {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.camera-capture video {
  aspect-ratio: 4 / 3;
  background: var(--ink);
  border-radius: 12px;
  object-fit: cover;
  width: 100%;
}

.camera-capture p {
  font-size: 11px;
  margin: 0;
  text-align: center;
}

.camera-actions {
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr 1fr;
}

.upload-layout {
  margin: 0 auto;
  max-width: 960px;
}

.upload-heading {
  margin-bottom: 44px;
  max-width: 740px;
}

.upload-heading h1 {
  margin-bottom: 18px;
}

.upload-heading p {
  color: var(--muted);
  font-size: 17px;
}

.drop-zone {
  align-items: center;
  background: var(--paper);
  border: 2px dashed rgba(165, 82, 54, 0.3);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 280px;
  padding: 28px;
  text-align: center;
  transition: background 180ms ease, border 180ms ease;
}

.drop-zone.dragover,
.drop-zone:hover {
  background: #f0ead5;
  border-color: var(--rust);
}

.drop-icon {
  align-items: center;
  background: white;
  border-radius: 50%;
  color: var(--rust);
  display: flex;
  font-size: 32px;
  height: 70px;
  justify-content: center;
  margin-bottom: 14px;
  width: 70px;
}

.drop-zone h3 {
  margin-bottom: 7px;
}

.drop-zone p {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 16px;
}

.upload-form {
  background: var(--paper);
  border-radius: 16px;
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 1fr;
  margin-top: 20px;
  padding: 28px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-field input,
.form-field textarea {
  background: var(--white);
  border: 0;
  border-bottom: 2px solid rgba(165, 82, 54, 0.2);
  color: var(--ink);
  outline: 0;
  padding: 14px;
}

.form-field textarea {
  min-height: 130px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  border-bottom-color: var(--rust);
}

.upload-footer {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-top: 22px;
}

.upload-footer p {
  color: var(--muted);
  font-size: 12px;
  margin: 0;
}

.membership-hero {
  align-items: center;
  background: var(--paper);
  border-radius: 18px;
  display: grid;
  gap: 60px;
  grid-template-columns: 1fr 0.75fr;
  overflow: hidden;
  padding: clamp(30px, 6vw, 76px);
}

.membership-hero h1 {
  font-size: clamp(44px, 6vw, 78px);
  margin-bottom: 18px;
  max-width: 680px;
}

.membership-hero p {
  color: var(--muted);
  font-size: 17px;
  max-width: 560px;
}

.membership-stamp {
  align-items: center;
  background: var(--rust);
  border: 12px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  color: white;
  display: flex;
  flex-direction: column;
  height: min(330px, 70vw);
  justify-content: center;
  justify-self: end;
  outline: 2px dashed rgba(255, 255, 255, 0.5);
  outline-offset: -20px;
  padding: 36px;
  text-align: center;
  transform: rotate(7deg);
  width: min(330px, 70vw);
}

.membership-stamp span {
  color: var(--sage);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.membership-stamp strong {
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: -0.05em;
  line-height: 1.05;
  margin: 14px 0;
}

.membership-stamp small {
  font-size: 9px;
  letter-spacing: 0.12em;
}

.membership-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr 1fr;
}

.membership-card {
  background: var(--paper);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  padding: 34px;
}

.membership-card.featured-membership {
  background: var(--white);
  box-shadow: var(--shadow);
  outline: 2px solid rgba(165, 82, 54, 0.13);
  outline-offset: -2px;
}

.membership-card h2 {
  font-size: 34px;
  margin: 18px 0 10px;
}

.membership-card p {
  color: var(--muted);
  min-height: 52px;
}

.membership-card ul {
  list-style: none;
  margin: 20px 0 30px;
  padding: 0;
}

.membership-card li {
  padding: 8px 0 8px 22px;
  position: relative;
}

.membership-card li::before {
  color: var(--sage-dark);
  content: "✓";
  font-weight: 700;
  left: 0;
  position: absolute;
}

.membership-card .button {
  margin-top: auto;
  width: 100%;
}

.price-badge {
  background: var(--sage);
  border-radius: 999px;
  color: var(--sage-dark);
  font-size: 13px;
  font-weight: 700;
  padding: 11px 16px;
  white-space: nowrap;
}

.shop-price-stack {
  align-items: stretch;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.shop-price-stack span {
  align-items: center;
  background: var(--paper);
  border-radius: 999px;
  color: var(--muted);
  display: flex;
  font-size: 12px;
  gap: 14px;
  justify-content: space-between;
  min-width: 170px;
  padding: 9px 14px;
}

.shop-price-stack strong {
  color: var(--rust);
  font-family: var(--display);
  font-size: 15px;
}

.product-switcher {
  background: var(--paper);
  border-radius: 12px;
  display: grid;
  gap: 6px;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 28px;
  padding: 6px;
}

.product-switcher button {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 8px;
  color: var(--muted);
  display: flex;
  gap: 12px;
  min-height: 70px;
  padding: 12px 16px;
  text-align: left;
}

.product-switcher button:hover,
.product-switcher button.active {
  background: var(--white);
  box-shadow: 0 8px 20px rgba(48, 42, 27, 0.07);
  color: var(--ink);
}

.product-switcher button > span:last-child {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.product-switcher strong {
  font-family: var(--display);
  font-size: 15px;
}

.product-switcher small {
  color: var(--muted);
  font-size: 11px;
}

.product-icon {
  align-items: center;
  background: var(--sage);
  border-radius: 50%;
  color: var(--sage-dark);
  display: flex;
  flex: 0 0 auto;
  font-size: 20px;
  height: 40px;
  justify-content: center;
  width: 40px;
}

.postcard-builder {
  align-items: start;
  display: grid;
  gap: clamp(28px, 6vw, 76px);
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.75fr);
}

.postcard-preview-wrap {
  background: var(--paper);
  border-radius: 18px;
  padding: clamp(22px, 5vw, 56px);
}

.postcard-preview {
  background: white;
  box-shadow: 0 24px 42px rgba(48, 42, 27, 0.18);
  margin: 0 auto;
  padding: 12px;
  transform: rotate(-2deg);
  transition: max-width 220ms ease;
  width: 100%;
}

.postcard-preview.horizontal {
  max-width: 640px;
}

.postcard-preview.vertical {
  max-width: 360px;
}

.postcard-preview.horizontal img {
  aspect-ratio: 1.45;
  object-fit: cover;
}

.postcard-preview.vertical img {
  aspect-ratio: 0.69;
  object-fit: cover;
}

.postcard-preview.vertical .postcard-front-label {
  align-items: start;
  flex-direction: column;
  gap: 6px;
}

.sticker-stage {
  align-items: center;
  background:
    linear-gradient(45deg, rgba(23, 23, 16, 0.04) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(23, 23, 16, 0.04) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(23, 23, 16, 0.04) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(23, 23, 16, 0.04) 75%);
  background-position: 0 0, 0 10px, 10px -10px, -10px 0;
  background-size: 20px 20px;
  border-radius: 14px;
  display: flex;
  justify-content: center;
  min-height: 430px;
  padding: 42px;
}

.sticker-preview {
  background: var(--white);
  border: 10px solid var(--white);
  box-shadow: 0 20px 38px rgba(48, 42, 27, 0.2);
  height: 290px;
  overflow: hidden;
  position: relative;
  transform: rotate(3deg);
  width: 290px;
}

.sticker-preview.circle {
  border-radius: 50%;
}

.sticker-preview.square {
  border-radius: 22px;
}

.sticker-preview.arch {
  border-radius: 145px 145px 24px 24px;
}

.sticker-preview img {
  height: 100%;
  object-fit: cover;
}

.sticker-preview span {
  background: rgba(255, 253, 247, 0.9);
  bottom: 20px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  left: 50%;
  max-width: calc(100% - 40px);
  overflow-wrap: anywhere;
  padding: 7px 10px;
  position: absolute;
  text-align: center;
  transform: translateX(-50%);
}

.postcard-front-label {
  align-items: end;
  display: flex;
  justify-content: space-between;
  padding: 14px 4px 4px;
}

.postcard-front-label span {
  color: var(--rust);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.postcard-front-label strong {
  font-family: var(--display);
  font-size: 13px;
}

.postcard-preview-meta {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-top: 24px;
}

.postcard-preview-meta > span:last-child {
  color: var(--muted);
  font-size: 11px;
  text-align: right;
}

.provider-credit {
  color: var(--muted);
  display: inline-block;
  font-size: 12px;
  margin-top: 18px;
}

.provider-credit strong {
  color: var(--rust);
}

.postcard-controls {
  background: var(--paper);
  border-radius: 16px;
  padding: 28px;
}

.postcard-controls .form-field {
  margin-top: 22px;
}

.postcard-controls .form-field > span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.postcard-controls select,
.postcard-controls textarea {
  background: var(--white);
  border: 0;
  border-bottom: 2px solid rgba(165, 82, 54, 0.2);
  color: var(--ink);
  outline: 0;
  padding: 13px;
  width: 100%;
}

.postcard-controls textarea {
  min-height: 130px;
  resize: vertical;
}

.postcard-controls select:focus,
.postcard-controls textarea:focus {
  border-bottom-color: var(--rust);
}

.orientation-control {
  background: var(--white);
  border-radius: 9px;
  display: grid;
  gap: 5px;
  grid-template-columns: 1fr 1fr;
  padding: 5px;
}

.orientation-control button {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 7px;
  color: var(--muted);
  display: flex;
  font-size: 12px;
  font-weight: 700;
  gap: 8px;
  justify-content: center;
  min-height: 42px;
  padding: 8px;
}

.orientation-control button:hover,
.orientation-control button.active {
  background: var(--paper-2);
  color: var(--rust-dark);
}

.orientation-icon {
  border: 2px solid currentColor;
  border-radius: 2px;
  display: inline-block;
}

.horizontal-icon {
  height: 12px;
  width: 19px;
}

.vertical-icon {
  height: 19px;
  width: 12px;
}

.postcard-controls small {
  color: var(--muted);
  font-size: 11px;
  text-align: right;
}

.postcard-price-row {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  margin: 24px 0 18px;
  padding-top: 18px;
}

.postcard-price-row strong {
  color: var(--rust);
  font-family: var(--display);
  font-size: 24px;
}

.member-discount-note {
  background: var(--sage);
  border-radius: 9px;
  color: var(--sage-dark);
  font-size: 12px;
  margin: -4px 0 18px;
  padding: 11px 13px;
}

.member-shop-link {
  color: var(--rust);
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  margin: -4px 0 18px;
}

.provider-notice {
  align-items: center;
  background: var(--white);
  border-radius: 9px;
  display: flex;
  font-size: 12px;
  justify-content: space-between;
  margin: -4px 0 18px;
  padding: 11px 13px;
}

.provider-notice span {
  color: var(--muted);
}

.provider-notice a,
.checkout-provider a {
  color: var(--rust);
  font-weight: 700;
}

.postcard-controls > .button {
  width: 100%;
}

.fine-print {
  font-size: 11px;
  margin: 12px 0 0;
  text-align: center;
}

.postcard-perks {
  align-items: start;
  display: grid;
  gap: 50px;
  grid-template-columns: 1fr 1fr;
}

.postcard-perks h2 {
  font-size: clamp(30px, 4vw, 48px);
  margin-top: 16px;
}

.perks-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 12px;
}

.perks-list span {
  background: var(--paper);
  border-radius: 10px;
  padding: 15px 17px;
}

.reviews-section {
  background: var(--paper);
  border-radius: 18px;
  padding: clamp(26px, 5vw, 52px);
}

.review-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
}

.review-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
}

.review-card img {
  height: 190px;
  object-fit: cover;
}

.review-card > div {
  padding: 19px;
}

.review-card h3 {
  font-size: 17px;
  margin: 8px 0;
}

.review-card p {
  color: var(--muted);
  font-family: Georgia, serif;
  font-size: 13px;
}

.review-card > div > strong {
  font-size: 11px;
}

.review-stars {
  color: var(--gold);
  letter-spacing: 0.08em;
}

.creator-layout {
  display: grid;
  gap: 24px;
  grid-template-columns: 300px minmax(0, 1fr);
}

.creator-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.creator-list button {
  align-items: center;
  background: var(--paper);
  border: 0;
  border-radius: 10px;
  display: flex;
  gap: 12px;
  padding: 11px;
  text-align: left;
}

.creator-list button:hover,
.creator-list button.active {
  background: var(--white);
  box-shadow: 0 10px 24px rgba(48, 42, 27, 0.07);
}

.creator-list img {
  border-radius: 50%;
  height: 48px;
  object-fit: cover;
  width: 48px;
}

.creator-list button > span {
  display: flex;
  flex-direction: column;
}

.creator-list strong {
  font-family: var(--display);
  font-size: 13px;
}

.creator-list small {
  color: var(--muted);
  font-size: 10px;
}

.creator-profile {
  min-width: 0;
}

.creator-cover {
  align-items: end;
  background: var(--paper);
  border-radius: 18px;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
  padding: 24px;
}

.creator-cover img {
  border-radius: 14px;
  height: 360px;
  object-fit: cover;
}

.creator-cover h2 {
  font-size: clamp(38px, 5vw, 64px);
  margin: 16px 0 13px;
}

.creator-cover p {
  color: var(--muted);
  max-width: 470px;
}

.creator-stats {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, 1fr);
  margin: 16px 0;
}

.creator-stats span {
  background: var(--paper);
  border-radius: 9px;
  color: var(--muted);
  font-size: 11px;
  padding: 14px;
}

.creator-stats strong {
  color: var(--ink);
  display: block;
  font-family: var(--display);
  font-size: 21px;
}

.creator-actions {
  display: flex;
  gap: 9px;
  margin-bottom: 25px;
}

.creator-story-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, 1fr);
}

.creator-story-grid .story-image,
.creator-story-grid .story-card:first-child .story-image {
  height: 280px;
}

.creator-revenue {
  align-items: start;
  background: var(--rust);
  border-radius: 18px;
  color: white;
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr 1fr;
  padding: clamp(28px, 5vw, 54px);
}

.creator-revenue h2 {
  font-size: clamp(30px, 4vw, 48px);
  margin: 12px 0 0;
}

.creator-revenue p {
  color: rgba(255, 255, 255, 0.76);
  margin: 0;
}

.tracking-search {
  background: var(--paper);
  border-radius: 12px;
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  padding: 8px;
}

.tracking-search input {
  background: transparent;
  border: 0;
  min-width: 0;
  outline: 0;
  padding: 0 12px;
  width: 100%;
}

.order-list {
  display: grid;
  gap: 12px;
}

.order-card {
  align-items: center;
  background: var(--white);
  border-radius: 13px;
  display: grid;
  gap: 24px;
  grid-template-columns: 0.75fr 1.5fr 0.65fr;
  padding: 22px;
}

.order-card h3 {
  font-size: 20px;
  margin: 10px 0 3px;
}

.order-card p {
  color: var(--muted);
  font-size: 11px;
  margin: 0;
}

.order-progress {
  display: grid;
  gap: 4px;
  grid-template-columns: repeat(4, 1fr);
}

.order-progress span {
  color: var(--muted);
  font-size: 9px;
  padding-top: 17px;
  position: relative;
  text-align: center;
}

.order-progress span::before {
  background: var(--paper-2);
  border-radius: 999px;
  content: "";
  height: 7px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.order-progress span.done::before,
.order-progress span.active::before {
  background: var(--sage-dark);
}

.order-total {
  align-items: end;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.order-total span {
  color: var(--muted);
  font-size: 9px;
  text-align: right;
}

.order-total strong {
  color: var(--rust);
  font-family: var(--display);
  font-size: 22px;
}

.order-total .text-link {
  background: transparent;
  border: 0;
  padding: 0;
}

.support-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
}

.support-grid article {
  background: var(--paper);
  border-radius: 12px;
  padding: 24px;
}

.support-grid h3 {
  margin: 22px 0 10px;
}

.support-grid p {
  color: var(--muted);
  font-size: 13px;
}

.support-icon {
  align-items: center;
  background: var(--sage);
  border-radius: 50%;
  color: var(--sage-dark);
  display: flex;
  font-size: 18px;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.admin-badge {
  background: var(--rust);
  border-radius: 999px;
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 9px 13px;
}

.admin-stats {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, 1fr);
}

.admin-stats article {
  background: var(--paper);
  border-radius: 11px;
  padding: 21px;
}

.admin-stats span {
  color: var(--muted);
  font-size: 11px;
}

.admin-stats strong {
  display: block;
  font-family: var(--display);
  font-size: 35px;
  margin-top: 8px;
}

.admin-section {
  margin-top: 55px;
}

.admin-table {
  display: grid;
  gap: 7px;
}

.admin-row {
  align-items: center;
  background: var(--white);
  border-radius: 9px;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1.5fr) 0.5fr 0.8fr;
  padding: 15px 17px;
}

.admin-row > span:first-child {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.admin-row small {
  color: var(--muted);
}

.status-pill {
  background: var(--paper);
  border-radius: 999px;
  font-size: 10px;
  justify-self: start;
  padding: 6px 9px;
}

.status-pill.approved {
  background: var(--sage);
  color: var(--sage-dark);
}

.status-pill.rejected {
  background: #f0d1c5;
  color: var(--rust-dark);
}

.admin-actions {
  display: flex;
  gap: 6px;
  justify-content: flex-end;
}

.admin-actions button {
  background: var(--paper);
  border: 0;
  border-radius: 7px;
  color: var(--rust);
  font-size: 10px;
  font-weight: 700;
  padding: 8px 9px;
}

.modal-form {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.checkout-provider {
  background: var(--paper);
  border-radius: 9px;
  font-size: 12px;
  padding: 10px 12px;
}

.modal-form .form-field {
  gap: 7px;
}

.modal-form .form-field > span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.modal-form input,
.modal-form textarea,
.modal-form select {
  background: var(--paper);
  border: 0;
  border-bottom: 2px solid rgba(165, 82, 54, 0.2);
  padding: 13px;
  outline: 0;
  width: 100%;
}

.modal-form textarea {
  min-height: 90px;
  resize: vertical;
}

.modal-form input:focus,
.modal-form textarea:focus,
.modal-form select:focus {
  border-bottom-color: var(--rust);
}

.modal-form .button {
  width: 100%;
}

.cart-list {
  display: grid;
  gap: 9px;
  margin: 22px 0;
  max-height: 360px;
  overflow-y: auto;
}

.cart-item {
  align-items: center;
  background: var(--paper);
  border-radius: 9px;
  display: grid;
  gap: 11px;
  grid-template-columns: 56px minmax(0, 1fr) auto auto;
  padding: 10px;
}

.cart-item img {
  border-radius: 7px;
  height: 52px;
  object-fit: cover;
  width: 56px;
}

.cart-item > div:nth-child(2) {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.cart-item > div:nth-child(2) strong {
  font-family: var(--display);
  font-size: 12px;
}

.cart-item > div:nth-child(2) span,
.cart-item > div:nth-child(2) small {
  color: var(--muted);
  font-size: 9px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.quantity-control {
  align-items: center;
  display: flex;
  gap: 7px;
}

.quantity-control button {
  background: var(--white);
  border: 0;
  border-radius: 50%;
  height: 25px;
  width: 25px;
}

.cart-item-price {
  align-items: end;
  display: flex;
  flex-direction: column;
}

.cart-item-price strong {
  color: var(--rust);
  font-family: var(--display);
}

.cart-item-price button {
  background: transparent;
  border: 0;
  color: var(--muted);
  font-size: 9px;
  padding: 2px 0 0;
}

.cart-summary {
  display: grid;
  gap: 7px;
  margin: 18px 0;
}

.cart-summary > span,
.cart-summary > a {
  align-items: center;
  color: var(--muted);
  display: flex;
  font-size: 11px;
  justify-content: space-between;
}

.cart-summary > a {
  color: var(--rust);
  font-weight: 700;
}

.cart-summary .discount {
  color: var(--sage-dark);
}

.cart-summary .cart-total {
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 15px;
  margin-top: 5px;
  padding-top: 10px;
}

.cart-checkout {
  width: 100%;
}

.share-link {
  background: var(--paper);
  border-radius: 10px;
  display: flex;
  gap: 7px;
  padding: 7px;
}

.share-link input {
  background: transparent;
  border: 0;
  min-width: 0;
  outline: 0;
  padding: 0 8px;
  width: 100%;
}

.share-preview {
  display: grid;
  gap: 7px;
  margin-top: 22px;
}

.share-preview span {
  color: var(--muted);
  font-size: 12px;
}

.modal-order-items {
  display: grid;
  gap: 8px;
  margin: 20px 0;
}

.modal-order-items > div {
  align-items: center;
  background: var(--paper);
  border-radius: 9px;
  display: grid;
  gap: 10px;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  padding: 9px;
}

.modal-order-items img {
  border-radius: 7px;
  height: 48px;
  object-fit: cover;
  width: 52px;
}

.modal-order-items span {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.modal-order-items span strong {
  font-family: var(--display);
  font-size: 11px;
}

.modal-order-items small {
  color: var(--muted);
  font-size: 9px;
}

.site-footer {
  background: var(--paper);
  display: grid;
  gap: 30px;
  grid-template-columns: 1.3fr 0.7fr 0.7fr 0.8fr;
  padding: 48px clamp(20px, 5vw, 74px);
}

.site-footer p,
.footer-note {
  color: var(--muted);
  font-size: 12px;
}

.footer-brand {
  font-size: 15px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.footer-links a,
.footer-links button {
  background: transparent;
  border: 0;
  color: var(--muted);
  font-size: 12px;
  padding: 0;
  text-align: left;
}

.footer-links a:hover,
.footer-links button:hover {
  color: var(--rust);
}

.modal-backdrop {
  align-items: center;
  background: rgba(22, 20, 13, 0.4);
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 20px;
  position: fixed;
  z-index: 50;
}

.modal-backdrop[hidden] {
  display: none;
}

.modal {
  background: var(--cream);
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
  max-width: 680px;
  padding: 32px;
  position: relative;
  width: 100%;
}

.modal h2 {
  font-size: 32px;
  margin: 0 0 10px;
}

.modal p {
  color: var(--muted);
}

.modal-close {
  background: var(--paper-2);
  border: 0;
  border-radius: 50%;
  font-size: 22px;
  height: 34px;
  position: absolute;
  right: 17px;
  top: 17px;
  width: 34px;
}

.modal-list {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.modal-list button {
  background: var(--paper);
  border: 0;
  border-radius: 10px;
  padding: 14px;
  text-align: left;
}

.modal-list button:hover {
  background: var(--paper-2);
}

.notification-list {
  display: grid;
  gap: 8px;
  margin-top: 22px;
}

.notification-list button {
  background: var(--paper);
  border: 0;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 14px;
  text-align: left;
}

.notification-list button.unread {
  background: var(--sage);
}

.notification-list button:hover {
  filter: brightness(0.98);
}

.notification-list button span {
  font-size: 12px;
}

.notification-list button small {
  color: var(--muted);
  font-size: 9px;
}

.global-search-box {
  align-items: center;
  background: var(--paper);
  border-radius: 11px;
  display: flex;
  gap: 9px;
  margin-top: 20px;
  padding: 4px 13px;
}

.global-search-box > span {
  color: var(--rust);
  font-size: 22px;
}

.global-search-box input {
  background: transparent;
  border: 0;
  font-size: 14px;
  min-width: 0;
  outline: 0;
  padding: 13px 0;
  width: 100%;
}

.search-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 12px 0 18px;
}

.search-quick-links button {
  background: var(--sage);
  border: 0;
  border-radius: 999px;
  color: var(--sage-dark);
  font-size: 10px;
  font-weight: 700;
  padding: 7px 10px;
}

.search-quick-links button:hover {
  filter: brightness(0.96);
}

.global-search-results {
  display: grid;
  gap: 18px;
  max-height: min(520px, 60vh);
  overflow-y: auto;
  padding-right: 3px;
}

.global-search-results section {
  display: grid;
  gap: 7px;
}

.global-search-results h3 {
  color: var(--muted);
  font-family: var(--body);
  font-size: 9px;
  letter-spacing: 0.13em;
  margin: 0;
  text-transform: uppercase;
}

.global-search-results section > button,
.public-account-posts button {
  align-items: center;
  background: var(--paper);
  border: 0;
  border-radius: 9px;
  display: grid;
  gap: 11px;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  padding: 9px;
  text-align: left;
}

.global-search-results section > button:hover,
.public-account-posts button:hover {
  background: var(--paper-2);
}

.global-search-results img,
.public-account-posts img {
  border-radius: 7px;
  height: 44px;
  object-fit: cover;
  width: 48px;
}

.global-search-results button > span:nth-child(2),
.public-account-posts button > span:nth-child(2) {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.global-search-results button strong,
.public-account-posts button strong {
  font-family: var(--display);
  font-size: 11px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.global-search-results button small,
.public-account-posts button small {
  color: var(--muted);
  font-size: 9px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.search-result-symbol {
  align-items: center;
  background: var(--sage);
  border-radius: 50%;
  color: var(--sage-dark);
  display: flex;
  font-size: 19px;
  height: 40px;
  justify-content: center;
  width: 40px;
}

.global-search-empty {
  background: var(--paper);
  border-radius: 10px;
  color: var(--muted);
  font-size: 12px;
  padding: 24px;
  text-align: center;
}

.public-account-posts {
  display: grid;
  gap: 8px;
}

.profile-menu-summary {
  align-items: center;
  display: grid;
  gap: 20px;
  grid-template-columns: auto minmax(0, 1fr);
  margin-bottom: 22px;
}

.profile-menu-summary h2 {
  margin: 6px 0;
}

.profile-menu-summary p {
  margin: 0;
}

.profile-photo-editor {
  align-items: center;
  background: var(--paper);
  border-radius: 12px;
  display: flex;
  gap: 20px;
  padding: 18px;
}

.profile-photo-editor > div:last-child {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.profile-remove-photo {
  background: transparent;
  border: 0;
  color: var(--rust);
  font-size: 11px;
  padding: 0;
}

.profile-remove-photo:hover {
  text-decoration: underline;
}

.saved-account-list {
  display: grid;
  gap: 8px;
  margin: 22px 0;
}

.saved-account-list > button {
  align-items: center;
  background: var(--paper);
  border: 0;
  border-radius: 11px;
  display: grid;
  gap: 12px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  padding: 12px;
  text-align: left;
}

.saved-account-list > button:hover {
  background: var(--paper-2);
}

.saved-account-list > button > span:nth-child(2) {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.saved-account-list strong {
  font-family: var(--display);
  font-size: 13px;
}

.saved-account-list small {
  color: var(--muted);
  font-size: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-secondary-actions {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.saved-login-profile {
  align-items: center;
  display: grid;
  gap: 18px;
  grid-template-columns: auto minmax(0, 1fr);
  margin-bottom: 22px;
}

.saved-login-profile h2 {
  margin: 5px 0;
}

.saved-login-profile p {
  margin: 0;
}

.saved-login-back {
  background: transparent;
  border: 0;
  color: var(--rust);
  font-size: 11px;
  font-weight: 700;
  padding: 3px;
}

.saved-login-back:hover {
  text-decoration: underline;
}

.toast {
  background: var(--ink);
  border-radius: 999px;
  bottom: 24px;
  color: white;
  left: 50%;
  max-width: calc(100% - 40px);
  opacity: 0;
  padding: 12px 18px;
  pointer-events: none;
  position: fixed;
  transform: translate(-50%, 18px);
  transition: opacity 180ms ease, transform 180ms ease;
  z-index: 60;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.empty-state {
  background: var(--paper);
  border-radius: 18px;
  padding: 60px 24px;
  text-align: center;
}

.empty-state h2 {
  font-size: 34px;
}

@media (max-width: 980px) {
  .site-header {
    flex-wrap: wrap;
  }

  .main-nav {
    margin-left: 0;
    order: 3;
    overflow-x: auto;
    width: 100%;
  }

  .hero,
  .home-split,
  .community-hero,
  .journal-layout,
  .trip-layout,
  .membership-hero,
  .postcard-builder,
  .postcard-perks,
  .creator-layout,
  .creator-cover,
  .creator-revenue {
    grid-template-columns: 1fr;
  }

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

  .post-detail-media img {
    height: 520px;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .hero-art {
    min-height: 450px;
  }

  .hero-photo {
    height: 450px;
  }

  .manifesto {
    grid-template-columns: 1fr;
  }

  .manifesto .button {
    justify-self: start;
  }

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

  .trip-sidebar {
    min-height: 520px;
  }

  .membership-stamp {
    justify-self: start;
  }

  .creator-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

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

  .order-total {
    align-items: start;
  }

  .order-total span {
    text-align: left;
  }

  .admin-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 15px 18px;
  }

  .brand {
    font-size: 14px;
  }

  .header-actions {
    gap: 3px;
  }

  .main-nav {
    gap: 21px;
    padding-bottom: 4px;
  }

  .main-nav a {
    font-size: 12px;
    white-space: nowrap;
  }

  .page {
    padding: 42px 18px 70px;
  }

  h1 {
    font-size: clamp(42px, 15vw, 64px);
  }

  .hero-art {
    min-height: 340px;
  }

  .hero-photo {
    height: 340px;
  }

  .hero-note {
    width: 132px;
  }

  .feature-grid,
  .principles,
  .upload-form,
  .journal-side,
  .membership-grid,
  .post-form-fields {
    grid-template-columns: 1fr;
  }

  .post-form-fields .form-field.full,
  .posting-as.full {
    grid-column: 1;
  }

  .post-photo-options {
    grid-template-columns: 1fr;
  }

  .review-grid,
  .support-grid,
  .creator-story-grid,
  .creator-stats {
    grid-template-columns: 1fr;
  }

  .story-card:first-child .story-image,
  .story-image {
    height: 280px;
  }

  .section-heading,
  .page-header,
  .journal-header,
  .upload-footer,
  .member-callout {
    align-items: start;
    flex-direction: column;
    gap: 14px;
  }

  .explore-grid {
    column-count: 1;
  }

  .map-experience {
    min-height: 580px;
  }

  .map-panel {
    left: 14px;
    top: 14px;
    width: calc(100% - 28px);
  }

  .trip-canvas,
  .trip-canvas img {
    min-height: 480px;
  }

  .journal-entry,
  .journal-entry.reverse {
    grid-template-columns: 1fr;
  }

  .journal-entry.reverse img {
    order: 0;
  }

  .journal-entry img {
    height: 250px;
  }

  .community-hero img {
    height: 350px;
  }

  .postcard-teaser {
    grid-template-columns: 1fr;
  }

  .postcard-teaser img {
    height: 220px;
  }

  .postcard-preview-meta {
    align-items: start;
    flex-direction: column;
  }

  .postcard-preview-meta > span:last-child {
    text-align: left;
  }

  .product-switcher {
    grid-template-columns: 1fr;
  }

  .shop-price-stack {
    width: 100%;
  }

  .shop-price-stack span {
    min-width: 0;
    width: 100%;
  }

  .sticker-stage {
    min-height: 330px;
    padding: 24px;
  }

  .sticker-preview {
    height: min(250px, 70vw);
    width: min(250px, 70vw);
  }

  .creator-list {
    grid-template-columns: 1fr;
  }

  .creator-cover img {
    height: 300px;
  }

  .creator-actions,
  .tracking-search,
  .share-link {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-stats {
    grid-template-columns: 1fr;
  }

  .admin-row {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .admin-actions {
    justify-content: flex-start;
  }

  .cart-item {
    grid-template-columns: 50px minmax(0, 1fr);
  }

  .cart-item img {
    height: 48px;
    width: 50px;
  }

  .quantity-control,
  .cart-item-price {
    grid-column: 2;
  }

  .cart-item-price {
    align-items: start;
  }

  .post-card {
    align-items: stretch;
    grid-template-columns: 1fr;
  }

  .post-card img {
    height: 240px;
  }

  .post-detail {
    padding: 14px;
  }

  .post-detail-media img {
    height: 380px;
    min-height: 0;
  }

  .post-detail-actions {
    grid-template-columns: repeat(2, 1fr);
  }

  .post-owner-metrics {
    grid-template-columns: 1fr;
  }

  .comment-field,
  .post-form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .comment-field .button,
  .post-form-footer .button {
    width: 100%;
  }

  .profile-menu-summary {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .saved-login-profile {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .profile-photo-editor {
    align-items: flex-start;
    flex-direction: column;
  }

  .camera-actions {
    grid-template-columns: 1fr;
  }

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

  .my-post-card img {
    height: 250px;
  }

  .comment.reply {
    margin-left: 20px;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .footer-note {
    grid-column: 1 / -1;
  }
}
