:root {
  --black: #0A0A0A;
  --white: #FAFAFA;
  --cream: #F0EBDE;
  --lime: #DEFF00;
  --grey: #4A4A4A;
  --line: rgba(10,10,10,0.12);
  --muted-white: rgba(255,255,255,0.6);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--white);
  color: var(--black);
  font-family: 'Poppins', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

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

/* Announcement bar */
.announce-bar {
  background: var(--black);
  color: var(--white);
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 9px 16px;
}

.announce-sub {
  color: #fff;
  font-weight: 700;
}

/* Topbar */
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 10;
}

.wordmark {
  font-size: 15px;
  letter-spacing: 0.06em;
}

.wordmark-bold {
  font-weight: 700;
}

.wordmark-normal {
  font-weight: 400;
}

.topbar nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
  font-size: 12px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.topbar nav a {
  opacity: 0.7;
  transition: opacity 0.15s;
}

.topbar nav a:hover { opacity: 1; }

.topbar nav a.active {
  opacity: 1;
  font-weight: 700;
  position: relative;
}

.topbar nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 1.5px;
  background: var(--black);
}

/* Page hero — canonical Type 1 text-only header. One size, one weight, one placement, reused everywhere a page needs a header with no photo. */
.page-hero {
  padding: 96px 32px 72px;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.page-hero .eyebrow {
  color: var(--grey);
}

.page-hero h1 {
  font-size: clamp(40px, 8vw, 78px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.page-hero .page-hero-copy {
  font-size: 16px;
  line-height: 1.55;
  color: var(--grey);
  max-width: 460px;
  margin: 0 auto;
}

/* Shared accent styles for admin-editable page headings (Society, Fashion,
   Events, Travel) — one underline, one flat-lime-highlight variant. */
.heading-accent--underline {
  text-decoration: underline;
  text-decoration-color: var(--lime);
  text-decoration-thickness: 4px;
  text-underline-offset: 10px;
}

.heading-accent--highlight {
  color: var(--black);
  background: var(--lime);
  padding: 0 12px;
  display: inline-block;
}

/* Upcoming event uses the .feat-b / .trip-* classes from the Travel page,
   see style.css around line 494, for visual consistency with that page. */
.upcoming-event {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 32px 64px;
}

/* Past events */
.past-events {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 32px 96px;
}

.pe-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 24px;
}

.pe-card-img {
  aspect-ratio: 4/3;
  background: var(--black);
  margin-bottom: 16px;
  overflow: hidden;
}

.pe-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: grayscale(1) contrast(1.05);
}

.pe-date {
  font-size: 12px;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.pe-name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.005em;
  margin-bottom: 8px;
}

.pe-recap {
  font-size: 13.5px;
  color: var(--grey);
  line-height: 1.5;
}

@media (max-width: 600px) {
  .pe-grid { grid-template-columns: 1fr; }
}

/* Hero */
.hero {
  padding: 56px 32px 64px;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(40px, 8vw, 76px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

.hero h1 .accent {
  color: var(--black);
  background: var(--lime);
  padding: 0 12px;
  display: inline-block;
}

.hero-copy {
  font-size: 19px;
  line-height: 1.5;
  color: var(--grey);
  max-width: 600px;
  margin: 0 auto 28px;
}

.hero-cta {
  display: inline-block;
  background: var(--lime);
  color: var(--black);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 999px;
  transition: transform 0.15s;
}

.hero-cta:hover {
  transform: translateY(-1px);
}

.byline {
  font-size: 14px;
  font-weight: 600;
}

.btn {
  display: inline-block;
  border: 2px solid var(--black);
  padding: 14px 28px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.15s, color 0.15s;
}

.btn:hover {
  background: var(--black);
  color: var(--white);
}

/* USPs */
.usps {
  background: var(--black);
}

.usps-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1040px;
  margin: 0 auto;
}

.usp {
  padding: 22px 32px;
  text-align: left;
  border-left: 1px solid rgba(255,255,255,0.15);
}

.usp:first-child {
  border-left: none;
}

.usp h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  color: var(--white);
}

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

/* Lists */
.lists {
  max-width: 1040px;
  margin: 0 auto;
  padding: 100px 32px;
}

.list-block {
  margin-bottom: 96px;
  scroll-margin-top: 90px;
}

.list-block:last-child { margin-bottom: 0; }

.list-head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.list-head h2 {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.tag {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey);
  border: 1px solid var(--line);
  padding: 4px 10px;
  border-radius: 999px;
}

.list-intro {
  color: var(--grey);
  font-size: 15px;
  margin-bottom: 32px;
}

/* Trips (dark modules) */
.trips-dark {
  background: var(--black);
}

.trip-module {
  scroll-margin-top: 60px;
}

.section-banner {
  width: 100%;
  padding: 26px 32px;
}

.section-banner--compact {
  padding: 14px 32px;
}

.section-banner--white {
  background: var(--white);
}

.section-banner--black {
  background: var(--black);
}

.tag-plain-on-black {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted-white);
}

.section-banner-inner {
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 18px;
  flex-wrap: wrap;
}

.section-banner h2 {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--black);
}

.section-banner--compact h2 {
  font-size: 22px;
}

.section-banner--black h2 {
  color: var(--white);
}

.tag-plain {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey);
}

.trip-module-body {
  max-width: 1040px;
  margin: 0 auto;
  padding: 40px 32px 72px;
}

/* Featured hero card (UNBLOCK): dramatic image-overlay treatment */
.feat-b {
  position: relative;
  aspect-ratio: 21/9;
  margin-bottom: 28px;
  overflow: hidden;
}

.feat-b img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.4) contrast(1.12) brightness(1.03);
}

.feat-b::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.15) 30%, rgba(0,0,0,0.9) 100%);
}

.feat-b-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 32px clamp(20px, 4vw, 48px);
  color: #fff;
}

.feat-b-body p,
.feat-b-body h3 {
  text-shadow: 0 1px 3px rgba(0,0,0,0.9), 0 4px 14px rgba(0,0,0,0.6);
}

.feat-b-body .trip-date {
  background: var(--lime);
  color: var(--black);
  text-shadow: none;
}

.feat-b-body .trip-title {
  font-size: clamp(30px, 5vw, 56px);
  color: #fff;
}

.feat-b-body .trip-subtitle {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0,0,0,0.85);
}

.feat-b-body .trip-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--lime);
  margin-top: 4px;
}

.feat-b-body .trip-desc {
  color: var(--muted-white);
  max-width: 60ch;
}

.feat-b-body .trip-status-line {
  color: #fff;
}

.trip-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

/* Flush cards: no frame, image runs edge to edge */
.trip-card-flush .trip-card-img {
  display: block;
}

.trip-card-img-zoom {
  transform: scale(1.1);
  transform-origin: 55% 45%;
}

.trip-card {
  background: #fff;
  overflow: hidden;
}

.trip-card-img-frame {
  padding: 12px;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.trip-card-img-frame::after {
  content: "";
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  bottom: 12px;
  background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.1) 30%, rgba(0,0,0,0) 55%);
  pointer-events: none;
}

.trip-card-img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  display: block;
  filter: saturate(1.25) contrast(1.08);
}

.trip-card-body {
  padding: 20px 22px 24px;
}

.trip-date {
  display: inline-block;
  background: var(--black);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.trip-kind {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 4px;
}

.trip-title {
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 4px;
}

.trip-subtitle {
  font-size: 14px;
  color: var(--grey);
  margin-bottom: 14px;
}

.trip-desc {
  font-size: 13.5px;
  color: var(--grey);
  line-height: 1.6;
  margin-bottom: 6px;
}

.trip-status-line {
  font-size: 13px;
  font-style: italic;
  color: var(--grey);
  margin-bottom: 16px;
}

.trip-explore {
  position: relative;
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--black);
  padding: 2px 8px;
}

.trip-explore::before {
  content: "";
  position: absolute;
  inset: -2px -7px;
  background: var(--lime);
  clip-path: polygon(1% 18%, 22% 2%, 78% 8%, 99% 0%, 96% 82%, 70% 100%, 12% 94%, 3% 78%);
  transform: rotate(-1.5deg);
  mix-blend-mode: multiply;
  transition: transform 0.15s;
}

.trip-explore:hover::before {
  transform: rotate(0deg);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.card {
  border: 1px solid var(--line);
}

.card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.card-img.placeholder {
  background: var(--black);
  color: var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  padding: 16px;
}

.card-body {
  padding: 16px;
}

.card-body h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.location {
  font-size: 13px;
  color: var(--grey);
  margin-bottom: 4px;
}

.meta {
  font-size: 12px;
  color: var(--grey);
  margin-bottom: 10px;
}

.badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 8px;
  background: var(--black);
  color: var(--white);
}

.badge-own {
  background: var(--lime);
  color: var(--black);
}

.card-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4/3;
  color: var(--grey);
  font-size: 14px;
  text-align: center;
  border-style: dashed;
  padding: 16px;
}

/* Footer CTA (newsletter, top zone — dark, photo later) */
.footer-cta {
  background: #1c1c1c;
  text-align: center;
  padding: 96px 32px 80px;
}

.signup-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted-white);
  margin-bottom: 24px;
}

.footer-cta h2 {
  color: #fff;
  font-size: clamp(64px, 12vw, 148px);
  font-weight: 800;
  line-height: 0.95;
  margin-bottom: 48px;
  letter-spacing: -0.02em;
}

.signup-sub {
  color: rgba(250,250,250,0.5);
  max-width: 380px;
  margin: 24px auto 0;
  font-size: 13.5px;
}

/* Footer brand (bottom zone — light) */
footer {
  background: var(--white);
  padding: 0;
}

.footer-brand {
  text-align: center;
  padding: 28px 32px 20px;
  max-width: 320px;
  margin: 0 auto;
}

.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
  padding: 20px 32px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-nav a {
  color: var(--black);
  opacity: 0.85;
  transition: opacity 0.15s;
}

.footer-nav a:hover {
  opacity: 1;
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s;
  z-index: 100;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal {
  position: relative;
  background: #fff;
  color: var(--black);
  width: 100%;
  max-width: 400px;
  padding: 32px 28px;
  border-radius: 20px;
  transform: translateY(8px);
  transition: transform 0.2s;
}

.modal-overlay.open .modal {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border: none;
  background: none;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  color: var(--black);
}

.modal-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 8px;
}

.modal h2 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 6px;
}

.modal-sub {
  font-size: 13px;
  color: var(--grey);
  margin-bottom: 20px;
}

.field {
  margin-bottom: 14px;
}

.field-row {
  display: flex;
  gap: 12px;
}

.field-row .field {
  flex: 1;
  min-width: 0;
}

.field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: var(--grey);
}

.field input {
  width: 100%;
  padding: 9px 12px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  font-size: 13.5px;
  font-family: inherit;
  color: var(--black);
  box-sizing: border-box;
}

.field input:focus {
  outline: none;
  border-color: var(--black);
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 24px;
  cursor: pointer;
}

.consent input {
  margin-top: 3px;
  flex-shrink: 0;
}

.consent span {
  font-size: 12px;
  line-height: 1.5;
  color: var(--grey);
}

.consent span a {
  color: var(--grey);
  text-decoration: underline;
}

.modal-unsub {
  font-size: 11px;
  color: var(--grey);
  opacity: 0.75;
  margin: -16px 0 24px 30px;
}

.modal button[type="submit"] {
  width: 100%;
  border: none;
  cursor: pointer;
  text-align: center;
}

.modal-legal {
  font-size: 11px;
  line-height: 1.5;
  color: var(--grey);
  text-align: center;
  margin-top: 12px;
}

.modal-legal a {
  color: var(--grey);
  text-decoration: underline;
}

.modal-done {
  text-align: center;
  padding: 20px 0;
}

.modal-done .tick {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--black);
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.modal-done h2 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
}

.modal-done p {
  font-size: 14px;
  color: var(--grey);
}

/* Footer */
footer .wordmark {
  display: block;
  font-size: 15px;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
  color: var(--black);
}

.footer-brand > p:not(.wordmark):not(.curated) {
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--grey);
  white-space: nowrap;
}

footer .curated {
  margin-top: 4px;
  font-family: 'Caveat', cursive;
  font-size: 20px;
  font-weight: 600;
  font-style: normal;
  color: var(--grey);
}

.footer-meta {
  padding: 24px 32px 40px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--grey);
}

.footer-meta a {
  color: var(--grey);
  text-decoration: underline;
}

.footer-meta a:hover {
  color: var(--black);
}

.footer-meta a[aria-label="Instagram"] {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 700px) {
  .usps-inner { grid-template-columns: 1fr; }
  .usp { border-left: none; border-top: 1px solid rgba(255,255,255,0.15); }
  .usp:first-child { border-top: none; }
  .topbar { flex-wrap: nowrap; padding: 20px 20px; }
  .wordmark { flex: 0 0 auto; white-space: nowrap; }
  .topbar nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    justify-content: flex-start;
    gap: 14px;
    font-size: 11px;
    padding-left: 16px;
  }
  .topbar nav::-webkit-scrollbar { display: none; }
  .topbar nav a { white-space: nowrap; }
  .footer-nav { gap: 12px 20px; font-size: 11px; padding: 16px 20px; }
  .hero { padding: 80px 20px 60px; }
  .lists { padding: 60px 20px; }
  .trip-cards { grid-template-columns: 1fr; }
  .feat-b { aspect-ratio: 4/5; }
  .section-banner { padding: 20px; }
  .trip-module-body { padding: 32px 20px 56px; }
  .modal { padding: 32px 24px; }
}
