
:root {
  --ink: #1d1714;
  --muted: #665651;
  --paper: #faf6f2;
  --panel: #ffffff;
  --line: #efe6e0;
  --coral: #cc7144;
  --green: #cc7144;
  --sage: #f6ede7;
  --gold: #bd8e3a;
  --shadow-sm: 0 4px 24px rgba(29, 23, 20, 0.04);
  --shadow-lg: 0 22px 64px rgba(29, 23, 20, 0.08);
  --shadow-xl: 0 35px 80px rgba(29, 23, 20, 0.14);
  --font-serif: 'Plus Jakarta Sans', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-sans: 'Plus Jakarta Sans', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* { 
  box-sizing: border-box; 
  -webkit-font-smoothing: antialiased;
}

html { 
  scroll-behavior: smooth; 
}

html,
body {
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
}

:lang(th) {
  line-height: 1.75;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 3px;
  border-radius: 4px;
}

img {
  display: block;
  max-width: 100%;
}

a { 
  color: inherit; 
  transition: var(--transition);
}

/* Floating Glassmorphic Header */
.site-header {
  position: fixed;
  z-index: 100;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 32px));
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 12px 28px;
  color: #fff;
  border-radius: 50px;
  background: rgba(27, 34, 32, 0.45);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  transition: var(--transition);
}

.site-header.solid {
  top: 8px;
  background: rgba(250, 248, 244, 0.9);
  color: var(--ink);
  border: 1px solid rgba(29, 23, 20, 0.08);
  box-shadow: 0 10px 30px rgba(29, 23, 20, 0.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.015em;
  white-space: nowrap;
  flex-shrink: 0;
  transition: var(--transition);
}

.brand span {
  background: linear-gradient(135deg, #ffffff, #ffd1b9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
}

.solid .brand span {
  background: linear-gradient(135deg, var(--coral), #b55d36);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
}

.brand img {
  width: 36px;
  height: 36px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
  transition: var(--transition);
}

.brand:hover img {
  transform: scale(1.08) rotate(3deg);
  box-shadow: 0 6px 20px rgba(204, 113, 68, 0.4);
}

.solid .brand img { 
  border-color: var(--green); 
}

nav {
  display: flex;
  gap: clamp(16px, 3vw, 36px);
  align-items: center;
}

nav a {
  text-decoration: none;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  position: relative;
  padding: 4px 0;
}

nav a:hover {
  color: var(--coral);
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Hero Section */
.hero {
  min-height: 94vh;
  display: flex;
  align-items: flex-end;
  padding: 180px clamp(20px, 6vw, 80px) 92px;
  color: #fff;
  background: linear-gradient(160deg,
    hsl(22, 65%, 72%) 0%,
    hsl(20, 62%, 62%) 30%,
    hsl(18, 60%, 52%) 60%,
    hsl(16, 58%, 42%) 100%);
  position: relative;
  overflow: hidden;
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
  z-index: 0;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg,
      rgba(24, 14, 9, 0.52) 0%,
      rgba(24, 14, 9, 0.18) 38%,
      rgba(24, 14, 9, 0.42) 68%,
      rgba(24, 14, 9, 0.82) 100%);
}

.hero-content {
  width: min(920px, 100%);
  position: relative;
  z-index: 2;
}

.hero-copy-th {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.82em;
  color: rgba(255, 255, 255, 0.82);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--coral);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero .eyebrow { 
  color: rgba(255, 255, 255, 0.85); 
}

h1 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(52px, 10vw, 110px);
  line-height: 0.92;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.hero-copy {
  max-width: 600px;
  margin: 28px 0 0;
  font-size: clamp(18px, 3vw, 25px);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}

.button.primary {
  background: rgba(0, 0, 0, 0.18);
  color: #fff;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-color: rgba(255, 255, 255, 0.25);
}

.button.primary:hover {
  background: rgba(0, 0, 0, 0.28);
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.4);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

.button.secondary:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

/* Primary button on light backgrounds: revert to solid coral */
.intro-band .button.primary,
.section .button.primary,
.about-editorial .button.primary,
.press-band .button.primary {
  background: var(--coral);
  color: #fff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(204, 113, 68, 0.2);
}

.intro-band .button.primary:hover,
.section .button.primary:hover,
.about-editorial .button.primary:hover,
.press-band .button.primary:hover {
  background: #b55d36;
  border-color: transparent;
  box-shadow: 0 12px 32px rgba(204, 113, 68, 0.3);
}

/* Secondary button on light backgrounds: revert to outlined ink/coral */
.intro-band .button.secondary,
.section:not(.join-band):not(.hero) .button.secondary,
.about-editorial .button.secondary,
.press-band .button.secondary {
  border-color: rgba(29, 23, 20, 0.28);
  color: var(--ink);
}

.intro-band .button.secondary:hover,
.section:not(.join-band):not(.hero) .button.secondary:hover,
.about-editorial .button.secondary:hover,
.press-band .button.secondary:hover {
  border-color: var(--ink);
  background: rgba(29, 23, 20, 0.04);
}

/* Sections */
.section {
  padding: clamp(64px, 10vw, 128px) 0;
}

.section-inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(36px, 8vw, 96px);
  align-items: start;
}

h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.intro-copy p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.6;
}

.intro-copy p:last-child { 
  margin-bottom: 0; 
}

.intro-band {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

/* Stats */
.stats-band {
  padding: 42px 0;
  background: var(--green);
  color: #fff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  overflow: hidden;
}

.stats-grid div {
  background: var(--green);
  padding: 28px;
  text-align: center;
  transition: var(--transition);
}

.stats-grid div:hover {
  background: #b55d36;
}

.stats-grid strong {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1;
  font-weight: 400;
}

.stats-grid span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Moments Gallery / Post Cards */
.section-head {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 42px;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.featured-grid .post-card:first-child {
  grid-column: span 2;
}

.post-card {
  min-width: 0;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
}

.post-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(26, 66, 57, 0.15);
}

.post-media {
  display: block;
  aspect-ratio: 4 / 3;
  background: var(--sage);
  overflow: hidden;
  position: relative;
}

.featured-grid .post-card:first-child .post-media {
  aspect-ratio: 16 / 10;
}

.post-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.post-card:hover .post-media img {
  transform: scale(1.04);
}

.post-body {
  padding: 24px;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.post-meta span {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.post-meta span:first-child {
  color: var(--muted);
}

.post-meta span:last-child {
  color: var(--coral);
  background: rgba(200, 105, 68, 0.08);
  padding: 4px 10px;
  border-radius: 20px;
}

.post-body h3 {
  margin: 0 0 12px;
  font-size: 21px;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: -0.015em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-body p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px dashed var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

/* Signals & Notes */
.split-band {
  background: var(--coral);
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.split-band h2 {
  color: #fff;
}

.split-band .eyebrow {
  color: rgba(255, 255, 255, 0.85);
}

.signal-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.split-band .signal-list div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 700;
  font-size: 17px;
}

.split-band .signal-list strong {
  color: var(--sage);
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 400;
}

.text-link {
  width: fit-content;
  color: var(--green);
  font-weight: 800;
  font-size: 15px;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 5px;
}

.text-link:hover {
  color: var(--coral);
}

/* Big Quote */
.quote-band {
  background: var(--coral);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.quote-band::before {
  content: '“';
  position: absolute;
  top: -60px;
  left: 20px;
  font-size: 320px;
  color: rgba(255,255,255,0.03);
  font-family: var(--font-serif);
  line-height: 1;
}

.quote-band p {
  max-width: 960px;
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(26px, 4.5vw, 44px);
  line-height: 1.35;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

/* Interactive Post Lightbox Modal */
.modal-overlay {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(27, 34, 32, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-window {
  width: min(920px, calc(100% - 32px));
  max-height: 88vh;
  background: var(--panel);
  border-radius: 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-xl);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  overflow: hidden;
  transform: scale(0.95) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-window {
  transform: scale(1) translateY(0);
}

.modal-visual {
  background: #000;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
}

.modal-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Image Carousel Controls */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
}

.carousel-btn.prev { left: 16px; }
.carousel-btn.next { right: 16px; }
.carousel-btn:disabled { 
  display: none; 
}

.carousel-counter {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.6);
  padding: 6px 14px;
  border-radius: 20px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.modal-content-area {
  display: flex;
  flex-direction: column;
  max-height: 88vh;
}

.modal-header {
  padding: 28px 28px 16px;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.modal-close:hover {
  background: var(--sage);
  color: var(--ink);
  transform: rotate(90deg);
}

.modal-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}

.modal-meta .date {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
}

.modal-meta .category {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--coral);
  background: rgba(200, 105, 68, 0.08);
  padding: 4px 10px;
  border-radius: 20px;
}

.modal-header h2 {
  font-size: 28px;
  line-height: 1.15;
  margin: 0;
  font-weight: 700;
}

.modal-body {
  padding: 0 28px 28px;
  overflow-y: auto;
  flex-grow: 1;
  color: #33403e;
  font-size: 16px;
  line-height: 1.6;
  border-bottom: 1px solid var(--line);
}

.modal-body p {
  margin: 0 0 16px;
}

.modal-footer {
  padding: 18px 28px;
  background: var(--paper);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
}

.modal-footer a {
  color: var(--green);
  text-decoration: underline;
}

/* Premium Footer */
.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  padding: 42px clamp(20px, 4vw, 56px);
  background: #fff;
  border-top: 1px solid var(--line);
}

.site-footer div:not(.footer-links) {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.site-footer span {
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(16px, 3vw, 28px);
  align-items: center;
}

.footer-links a {
  font-size: 14px;
  font-weight: 700;
  color: var(--green);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--coral);
}

/* Archive Layout Updates */
.archive-main {
  background: var(--paper);
}

.archive-hero {
  padding: 132px 0 64px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1), transparent 65%),
    linear-gradient(135deg, rgba(204, 113, 68, 0.9), rgba(163, 76, 33, 0.98));
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.archive-hero h1 {
  max-width: 900px;
  color: #fff;
  font-family: var(--font-serif);
  font-size: clamp(48px, 8vw, 92px);
  font-weight: 400;
}

.archive-hero p:not(.eyebrow) {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 19px;
  margin-top: 16px;
}

.archive-hero .eyebrow {
  color: rgba(255, 255, 255, 0.85);
}

/* Custom overlay input & chips for orange hero */
.archive-hero .chip {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.2);
}

.archive-hero .chip:hover {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
  border-color: transparent;
}

.archive-hero .chip.active {
  background: #fff;
  color: var(--coral);
  border-color: transparent;
  box-shadow: var(--shadow-sm);
}

.archive-hero .search-input-wrapper input {
  border-color: rgba(255, 255, 255, 0.2);
}

.archive-hero .search-input-wrapper input:focus {
  border-color: #fff;
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.15);
}

/* Category Filter Chips & Input */
.archive-tools {
  margin-top: 42px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 820px;
}

.search-input-wrapper {
  position: relative;
  width: 100%;
}

.search-input-wrapper input {
  width: 100%;
  min-height: 56px;
  padding: 0 24px 0 54px;
  border: 1px solid var(--line);
  border-radius: 50px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.search-input-wrapper input:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 10px 25px rgba(26, 66, 57, 0.05);
}

.search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 18px;
  pointer-events: none;
}

/* Chips layout */
.category-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  background: #fff;
  border: 1px solid var(--line);
  padding: 8px 18px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  cursor: pointer;
  transition: var(--transition);
}

.chip:hover {
  background: var(--sage);
  color: var(--green);
  border-color: transparent;
}

.chip.active {
  background: var(--green);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 15px rgba(26, 66, 57, 0.15);
}

.archive-list {
  padding-top: 12px;
  background: #fff;
  border-top: 1px solid var(--line);
}

.archive-post {
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: var(--transition);
}

.archive-post:hover {
  background: rgba(250, 248, 244, 0.5);
}

.archive-head h2 {
  max-width: 900px;
  font-size: clamp(24px, 4vw, 36px);
  line-height: 1.15;
  font-family: var(--font-serif);
  font-weight: 400;
  margin: 0;
}

.archive-head a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--green);
  transition: var(--transition);
}

.archive-post:hover .archive-head a {
  background: var(--green);
  color: #fff;
  border-color: transparent;
}

.archive-gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin: 24px 0;
}

.archive-gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  transition: var(--transition);
}

.archive-gallery img:hover {
  transform: scale(1.05);
}

.archive-copy {
  max-width: 820px;
  color: #33403e;
  font-size: 17px;
  line-height: 1.6;
}

/* Empty State */
.empty-state {
  display: none;
  text-align: center;
  padding: 64px 20px;
  color: var(--muted);
}

.empty-state h3 {
  font-family: var(--font-serif);
  font-size: 32px;
  color: var(--ink);
  margin-bottom: 8px;
}

/* Responsive Overrides */
@media (max-width: 860px) {
  .site-header {
    top: 8px;
    padding: 8px 12px;
    gap: 8px;
    width: min(1180px, calc(100% - 16px));
  }

  .brand {
    gap: 6px;
    font-size: 14px;
  }

  .brand span {
    font-size: 14px;
  }

  .brand img {
    width: 28px;
    height: 28px;
  }

  nav {
    gap: 4px;
  }

  nav a {
    font-size: 11px;
    padding: 5px 9px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
  }

  nav a::after {
    display: none;
  }

  nav a:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
  }

  .solid nav a {
    background: rgba(29, 23, 20, 0.04);
    border-color: rgba(29, 23, 20, 0.03);
    color: var(--muted);
  }

  .solid nav a:hover {
    background: var(--coral);
    color: #fff;
  }

  @media (max-width: 430px) {
    .brand span {
      display: none; /* Hide logo text only on narrow screens to fit links */
    }
  }

  .hero {
    min-height: 88vh;
    padding-top: 160px;
  }

  .two-column,
  .post-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .featured-grid .post-card:first-child {
    grid-column: span 1;
  }

  .signal-list {
    grid-template-columns: 1fr;
  }

  .archive-head {
    align-items: flex-start;
  }

  .archive-gallery {
    grid-template-columns: repeat(3, 1fr);
  }

  .modal-window {
    grid-template-columns: 1fr;
    max-height: 94vh;
  }
  
  .modal-content-area {
    max-height: 50vh;
  }
}

@media (max-width: 520px) {
  .section-inner {
    width: min(100% - 32px, 1180px);
  }

  h1 {
    font-size: 56px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
    text-align: center;
  }

  .archive-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Vibe Carousel Styling */
.highlights-band {
  background: var(--paper);
  padding: 80px 0;
  border-bottom: 1px solid var(--line);
}

.text-center {
  text-align: center;
  align-items: center;
}

.vibe-carousel-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 40px auto 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  aspect-ratio: 16 / 9;
}

.vibe-track {
  width: 100%;
  height: 100%;
  position: relative;
}

.vibe-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  z-index: 1;
}

.vibe-slide.active {
  opacity: 1;
  z-index: 2;
}

.vibe-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.vibe-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 24px 24px;
  background: linear-gradient(0deg, rgba(29, 23, 20, 0.9) 0%, rgba(29, 23, 20, 0.4) 60%, transparent 100%);
  color: #fff;
  font-size: clamp(15px, 2.5vw, 19px);
  font-weight: 700;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.vibe-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.vibe-btn:hover {
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

.vibe-btn.prev { left: 20px; }
.vibe-btn.next { right: 20px; }

.vibe-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0;
  z-index: 10;
}

.vibe-dots .dot {
  box-sizing: content-box;
  width: 10px;
  height: 10px;
  padding: 17px 12px;
  background-clip: content-box;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: var(--transition);
}

.vibe-dots .dot.active {
  background-color: #fff;
  transform: scale(1.2);
  box-shadow: 0 0 10px rgba(255,255,255,0.4);
}

/* EastPoint-style flowing motion background (CI Colors: no black) */
.hero-mesh-bg {
  position: relative;
  background: var(--paper);
  overflow: hidden;
  z-index: 1;
}

.hero-mesh-bg::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 25% 30%, rgba(204, 113, 68, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 75% 25%, rgba(189, 142, 58, 0.12) 0%, transparent 45%),
              radial-gradient(circle at 35% 75%, rgba(246, 237, 231, 0.8) 0%, transparent 55%),
              radial-gradient(circle at 70% 70%, rgba(204, 113, 68, 0.1) 0%, transparent 50%);
  animation: meshFlow 22s infinite alternate ease-in-out;
  pointer-events: none;
  z-index: -1;
  filter: blur(40px);
}

@keyframes meshFlow {
  0% {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }
  50% {
    transform: translate(-4%, 4%) scale(1.03) rotate(60deg);
  }
  100% {
    transform: translate(4%, -4%) scale(0.97) rotate(120deg);
  }
}

/* Reels Section */
.reels-band {
  background: var(--paper);
  border-top: 1px solid var(--line);
  padding: 80px 0;
  position: relative;
}

/* Reels Carousel Layout */
.reels-carousel-container {
  position: relative;
  margin-top: 40px;
  padding: 0 48px;
}

.reels-carousel {
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
  display: flex;
  gap: 24px;
  padding: 20px 4px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.reels-carousel::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.reels-carousel-track {
  display: flex;
  gap: 24px;
}

/* Dedicated Grid for Reels Page */
.reels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 40px;
  justify-items: center;
}

/* Reel Preview Card */
.reel-card {
  position: relative;
  width: 270px;
  height: 480px;
  background: #120d0b;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s ease;
  border: 1px solid var(--line);
  cursor: pointer;
  scroll-snap-align: start;
  flex-shrink: 0;
}

.reel-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-lg);
  border-color: var(--coral);
}

.reel-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reel-card:hover .reel-thumbnail {
  transform: scale(1.06);
}

.reel-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(29, 23, 20, 0.85) 90%);
  z-index: 1;
}

/* Play Icon Overlay */
.reel-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.reel-play-btn {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s;
  transform: scale(0.9);
}

.reel-card:hover .reel-play-btn {
  transform: scale(1.05);
  background: var(--panel);
}

.reel-play-btn svg {
  width: 20px;
  height: 20px;
  fill: var(--coral);
  margin-left: 3px; /* visual center adjustment */
}

/* Caption and Date Overlay */
.reel-text-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  z-index: 3;
}

.reel-meta-category {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--coral);
  letter-spacing: 1.5px;
  margin-bottom: 6px;
}

.reel-title-excerpt {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.4;
  margin: 0 0 8px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.reel-date {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* Carousel Control Arrows */
.carousel-arrow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--panel);
  border: 1px solid var(--line);
  color: var(--ink);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s, box-shadow 0.3s;
}

.carousel-arrow-btn:hover {
  transform: translateY(-50%) scale(1.08);
  background: var(--sage);
  color: var(--coral);
  box-shadow: var(--shadow-lg);
}

.carousel-arrow-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.carousel-arrow-btn.prev-arrow {
  left: 12px;
}

.carousel-arrow-btn.next-arrow {
  right: 12px;
}

/* Carousel Navigation Indicator Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(29, 23, 20, 0.25);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.carousel-dot.active {
  background: var(--coral);
  transform: scale(1.25);
}

/* Video Lightbox Modal Structure */
.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(18, 13, 11, 0.96);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  padding: 40px;
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(12px);
}

.video-modal.active {
  display: flex;
  opacity: 1;
}

.video-modal-container {
  position: relative;
  background: var(--panel);
  border-radius: 28px;
  width: min(960px, 100%);
  max-height: min(720px, calc(100vh - 80px));
  display: flex;
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
  animation: modalScaleUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes modalScaleUp {
  from { opacity: 0; transform: scale(0.96) translateY(10px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.video-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(29, 23, 20, 0.06);
  border: none;
  color: var(--ink);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
  transition: background 0.3s, transform 0.3s;
}

.video-modal-close:hover {
  background: rgba(29, 23, 20, 0.12);
  transform: scale(1.08);
}

.video-modal-player-side {
  flex: 1.1;
  background: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 9/16;
  position: relative;
  height: 100%;
}

.video-modal-player-side iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.video-modal-details-side {
  flex: 0.9;
  padding: 40px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  border-left: 1px solid var(--line);
}

.video-modal-meta {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--coral);
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.video-modal-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
  margin: 0 0 16px 0;
}

.video-modal-caption {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 24px 0;
  white-space: pre-line;
}

.video-modal-date {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.video-modal-link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  padding: 12px 20px;
  background: var(--coral);
  color: #ffffff !important;
  text-decoration: none;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.video-modal-link-btn:hover {
  transform: translateY(-2px);
}

@media (max-width: 800px) {
  .video-modal {
    padding: 16px;
  }
  .video-modal-container {
    flex-direction: column;
    max-height: calc(100vh - 40px);
    width: min(420px, 100%);
  }
  .video-modal-player-side {
    aspect-ratio: 9/16;
    width: 100%;
    height: auto;
    max-height: 55vh;
  }
  .video-modal-details-side {
    border-left: none;
    border-top: 1px solid var(--line);
    padding: 24px;
    flex: none;
  }
  .video-modal-close {
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  }
}

@media (max-width: 960px) {
  .reels-carousel-container {
    padding: 0 20px;
  }
  .carousel-arrow-btn {
    display: none;
  }
}
@media (max-width: 520px) {
  .vibe-carousel-wrapper {
    aspect-ratio: 4 / 3;
  }
}

/* About Us & Guests Page Additions */
.about-hero {
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  padding: 120px clamp(20px, 6vw, 80px) 60px;
  color: #fff;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1), transparent 60%),
    linear-gradient(180deg, rgba(204, 113, 68, 0.35), rgba(29, 23, 20, 0.95)),
    url('../assets/photos/914737241717875_122112465597110108_0.jpg') center / cover no-repeat;
  position: relative;
}

.about-editorial {
  padding: 80px 0;
  background: var(--paper);
}

.about-editorial p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 24px;
}

.about-editorial h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--ink);
  margin: 48px 0 16px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.team-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.team-card h4 {
  margin: 0;
  font-size: 18px;
  font-family: var(--font-serif);
  color: var(--ink);
}

.team-role {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--coral);
}

.team-bio {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* Press Backlink Section */
.press-band {
  background: var(--sage);
  padding: 80px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.press-box {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 48px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.press-logo {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 800;
  color: #a8471e;
  margin-bottom: 16px;
  display: block;
  letter-spacing: -0.02em;
}

.press-box p {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.7;
}

/* Guests Grid Styles */
.guests-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.guest-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.guest-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--coral);
}

.guest-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.guest-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral), #b55d36);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 20px;
  box-shadow: 0 4px 10px rgba(204, 113, 68, 0.25);
  flex-shrink: 0;
  overflow: hidden;
  border: 2px solid var(--line);
  transition: var(--transition);
}

.guest-card:hover .guest-avatar {
  border-color: var(--coral);
  transform: scale(1.08) rotate(3deg);
  box-shadow: 0 6px 15px rgba(204, 113, 68, 0.4);
}

.guest-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.guest-card:hover .guest-avatar-img {
  transform: scale(1.08);
}

.guest-info h3 {
  margin: 0;
  font-size: 20px;
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--ink);
}

.guest-tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--muted);
  margin-top: 4px;
  display: block;
}

.guest-bio {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .press-box {
    padding: 32px 20px;
  }
}

/* About Us Gallery & Press Cover Styling */
.about-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  aspect-ratio: 3 / 2;
  transition: var(--transition);
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
  border-color: var(--coral);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.press-cover {
  margin-bottom: 24px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  max-height: 360px;
}

.press-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-credit {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  margin: 40px auto 20px;
  font-style: italic;
}

/* Editorial Inline Images */
.editorial-image-wrapper {
  margin: 48px 0;
  text-align: center;
}

.editorial-image {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  max-height: 480px;
}

.editorial-image img {
  width: 100%;
  height: 100%;
  max-height: 480px;
  object-fit: cover;
  transition: var(--transition);
}

.editorial-image img:hover {
  transform: scale(1.015);
}

.editorial-caption {
  font-size: 13px;
  color: var(--muted);
  margin-top: 12px;
  font-style: italic;
}

/* ============================================
   TASTE SKILL UX/UI UPGRADES
   Premium anti-slop enhancements
   ============================================ */

/* 1. Noise Texture Overlay */
.noise-overlay {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px 180px;
}

/* 2. Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2.5px;
  width: 0%;
  background: linear-gradient(90deg, var(--coral), #e8956a);
  z-index: 10000;
  transition: width 0.1s linear;
  border-radius: 0 2px 2px 0;
}
/* 3. Page Fade-In (optimized for mobile performance) */
body {
  animation: pageFadeIn 0.15s ease-out forwards;
}

@keyframes pageFadeIn {
  from { opacity: 0.85; }
  to   { opacity: 1; }
}

/* Filter Utility */
.is-hidden {
  display: none !important;
}

/* 4. Active Nav Link Indicator */
nav a.active-page {
  color: var(--coral);
  position: relative;
}

nav a.active-page::before {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--coral);
}

/* 5. Sheen Effect on Cards */
.post-card,
.guest-card,
.team-card,
.press-box,
.reel-card {
  position: relative;
  overflow: hidden;
}

.post-card::after,
.guest-card::after,
.team-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.28) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  border-radius: inherit;
}

.post-card:hover::after,
.guest-card:hover::after,
.team-card:hover::after {
  transform: translateX(100%);
}

/* 6. Spring Button Animations */
.button {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.3s ease !important;
}

.button:hover {
  transform: translateY(-3px) scale(1.02);
}

.button:active {
  transform: translateY(0) scale(0.98) !important;
  transition-duration: 0.1s !important;
}

/* 7. Enhanced Guest Card Hover */
.guest-card {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s ease;
}

.guest-card:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0 28px 56px rgba(29, 23, 20, 0.12);
}

/* 8. Enhanced Navbar Brand Spring */
.brand {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.brand:hover {
  transform: scale(1.03);
}

/* 9. Post Card Spring Lift */
.post-card {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s ease;
}

.post-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 60px rgba(29, 23, 20, 0.10);
}

/* 10. Archive Post Hover */
.archive-post {
  transition: background 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 8px;
}

.archive-post:hover {
  transform: translateX(4px);
  background: rgba(204, 113, 68, 0.04);
}

/* 11. Mobile Hamburger Menu & Dropdown */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  z-index: 200;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.2s;
  transform-origin: center;
}

.site-header.solid .mobile-menu-btn span {
  background: var(--ink);
}

.mobile-menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mobile-menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav-sheet {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 240px;
  background: rgba(250, 246, 242, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 16px 24px;
  box-shadow: 0 16px 40px rgba(29, 23, 20, 0.12);
  opacity: 0;
  transform: translateY(-10px) scale(0.95);
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
  z-index: 150;
}

.mobile-nav-sheet.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.mobile-nav-sheet a {
  display: block;
  padding: 12px 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  transition: color 0.2s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mobile-nav-sheet a:hover {
  color: var(--coral);
  transform: translateX(4px);
}

.mobile-nav-sheet a:last-child {
  border-bottom: none;
}

@media (max-width: 990px) {
  .mobile-menu-btn {
    display: flex;
  }

  .mobile-nav-sheet {
    display: block;
  }

  .site-header nav:not(.mobile-nav-sheet) {
    display: none;
  }
}

/* 12. Gallery Item Spring */
.gallery-item {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.04) rotate(0.5deg);
  box-shadow: var(--shadow-lg);
  border-color: var(--coral);
}

/* 13. Chip Spring */
.chip {
  transition: background 0.25s ease, color 0.25s ease,
              transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.3s ease;
}

.chip:hover {
  transform: translateY(-2px);
}

.chip:active {
  transform: translateY(0) scale(0.96);
}

/* 14. Footer Link Spring */
.footer-links a {
  transition: color 0.2s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: inline-block;
}

.footer-links a:hover {
  transform: translateY(-2px);
}

/* 15. Section fade-in on scroll (intersection observer) */
.section-fade {
  opacity: 0;
  transform: translateY(12px);
  will-change: opacity, transform;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-fade.in-view {
  opacity: 1;
  transform: translateY(0);
}

.wp-content img { max-width: 100%; height: auto; border-radius: 12px; }
.wp-content p, .wp-content li, .wp-content blockquote { margin: 0 0 1rem; line-height: 1.7; }
.wp-content h2, .wp-content h3 { margin: 1.5rem 0 0.75rem; }

/* ============================================
   BRAND TRUST + RSVP LAYER (2026-06-11)
   ============================================ */

/* Thai-heavy text needs taller line-height for vowel stacks */
.post-body p,
.archive-copy,
.modal-body,
.post-body h3,
.archive-head h2 {
  line-height: 1.7;
}

/* Nav join pill */
nav a.nav-join {
  padding: 8px 16px;
  border-radius: 30px;
  background: var(--coral);
  color: #fff;
}

nav a.nav-join::after {
  display: none;
}

nav a.nav-join:hover {
  background: #b55d36;
  color: #fff;
}

.site-header.solid nav a.nav-join {
  background: var(--coral);
  color: #fff;
}

/* Values row */
.values-row {
  list-style: none;
  margin: clamp(40px, 6vw, 72px) 0 0;
  padding: clamp(28px, 4vw, 40px) 0 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 48px);
  text-align: center;
}

.values-row li {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.values-row strong {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--coral);
}

.values-row span {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

/* Flow Society / RSVP band */
.join-band {
  background:
    radial-gradient(circle at 85% 8%, rgba(204, 113, 68, 0.22), transparent 45%),
    radial-gradient(circle at 8% 95%, rgba(189, 142, 58, 0.16), transparent 50%),
    #241a14;
  color: #fff;
  scroll-margin-top: 90px;
}

.join-band h2 {
  color: #fff;
}

.join-band .eyebrow {
  color: #e8956a;
}

.join-copy {
  margin: 24px 0 0;
  color: rgba(255, 245, 238, 0.85);
  font-size: 17px;
  line-height: 1.7;
}

.join-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  padding: clamp(28px, 4vw, 40px);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.join-card h3 {
  margin: 0 0 20px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.015em;
}

.join-steps {
  margin: 0;
  padding: 0 0 0 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: rgba(255, 245, 238, 0.85);
  font-size: 15.5px;
  line-height: 1.65;
}

.join-steps strong {
  color: #fff;
}

.flow-key {
  display: inline-block;
  padding: 1px 10px;
  border-radius: 8px;
  background: rgba(204, 113, 68, 0.3);
  border: 1px solid rgba(232, 149, 106, 0.5);
  color: #ffd1b9;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.join-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.join-band .button.primary {
  background: var(--coral);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(204, 113, 68, 0.35);
}

.join-band .button.primary:hover {
  background: #b55d36;
}

.join-band .button.secondary {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

.join-note {
  margin: 22px 0 0;
  font-size: 13.5px;
  color: rgba(255, 245, 238, 0.6);
  line-height: 1.65;
}

.quote-band .quote-th {
  margin-top: 18px;
  font-size: clamp(17px, 2.5vw, 22px);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 860px) {
  .values-row {
    grid-template-columns: 1fr;
  }

  .join-actions .button {
    width: 100%;
  }
}

/* Editorial Story section design enhancements */
.intro-band {
  position: relative;
  background: radial-gradient(circle at 5% 15%, rgba(204, 113, 68, 0.035), transparent 50%), var(--paper);
  padding-bottom: clamp(24px, 4vw, 40px) !important;
}

.story-eyebrow {
  display: inline-block;
  font-size: 13.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--coral);
  margin-bottom: 20px;
}

.story-title {
  font-family: var(--font-serif);
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin: 0;
}

.story-title span.coral-text {
  color: var(--coral);
  display: block;
  margin-top: 8px;
}

.intro-copy .lead-text {
  font-size: 21px;
  line-height: 1.6;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: -0.015em;
}

.intro-copy .body-text {
  font-size: 17.5px;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 24px;
}

.intro-copy .conclusion-text {
  font-size: 18px;
  line-height: 1.65;
  font-weight: 700;
  color: var(--ink);
  border-left: 3px solid var(--coral);
  padding-left: 20px;
  margin-top: 32px;
  font-style: italic;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .section-fade {
    opacity: 1;
    transform: none;
  }
}
