/* =========================================================
   Guide to Northeast — Design System
   Fonts: DM Serif Display (headlines/logo) + DM Sans (body/UI)
   Palette: monochrome ink/paper, no color accent
   ========================================================= */

:root {
  --ink: #211f1c;
  --ink-soft: #6b6a64;
  --ink-mute: #a09a8c;
  --line: #e0ddd3;
  --paper: #FBFAF7;
  --paper-alt: #F2F0EA;
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html { overflow-x: clip; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
button { font-family: 'DM Sans', sans-serif; }

.eyebrow { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--ink-mute); }

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1328px; margin: 0 auto; padding: 0 24px; }

.mixed-head { margin: 0; }
.mixed-head .line1 { font-family: 'DM Serif Display', serif; font-style: italic; font-weight: 400; font-size: clamp(22px, 2.8vw, 30px); color: var(--ink-soft); line-height: 1.2; }
.mixed-head .line2 { font-family: 'DM Serif Display', serif; font-weight: 700; font-size: clamp(28px, 4.4vw, 46px); color: var(--ink); line-height: 1.08; letter-spacing: -0.5px; margin-top: 2px; }
.mixed-head.center { text-align: center; }
.mixed-head.light .line1 { color: rgba(255,255,255,0.75); }
.mixed-head.light .line2 { color: #fff; }
.mixed-head-col { display: flex; flex-direction: column; align-items: center; text-align: center; }

/* =========================================================
   NAV
   ========================================================= */
.site-header { position: sticky; top: 0; z-index: 100; background: var(--paper); }
nav.site-nav { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 26px 24px; max-width: 1440px; margin: 0 auto; gap: 16px; }
.nav-links { display: flex; align-items: center; gap: 28px; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; }
.nav-links-left { grid-column: 1; justify-self: start; }
.nav-links-right { grid-column: 3; justify-self: end; }
.nav-links a:hover { color: var(--ink-soft); }
.nav-links a.active { color: var(--ink); border-bottom: 1px solid var(--ink); padding-bottom: 3px; }
.back-link { display: flex; align-items: center; gap: 6px; }

.breadcrumb-bar { border-top: 0.5px solid var(--line); }
.breadcrumb-bar-inner { max-width: 1440px; margin: 0 auto; padding: 14px 24px; }

.breadcrumb-trail {
  display: flex; flex-wrap: wrap; align-items: center; gap: 7px;
  font-size: 11px; letter-spacing: 0.8px; text-transform: uppercase; color: var(--ink-mute);
}
.breadcrumb-trail a { color: var(--ink-soft); }
.breadcrumb-trail a:hover { color: var(--ink); }
.breadcrumb-sep { color: var(--line-strong, var(--line)); }
.breadcrumb-current { color: var(--ink); }

@media (max-width: 900px) {
  .breadcrumb-bar-inner { padding: 12px 20px; }
  .breadcrumb-trail {
    max-width: 100%; min-width: 0; flex-wrap: nowrap; overflow: hidden; white-space: nowrap;
    font-size: 10.5px;
  }
  .breadcrumb-trail a, .breadcrumb-trail .breadcrumb-sep { flex-shrink: 0; }
  .breadcrumb-trail .breadcrumb-current {
    flex-shrink: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  }
  /* Collapse to just "Parent / Current page" on narrow screens — full trail still in JSON-LD for SEO */
  .breadcrumb-trail > :not(:nth-last-child(-n+3)) { display: none; }
}
.brand { grid-column: 2; justify-self: center; text-align: center; line-height: 1; white-space: nowrap; display: block; }
.brand .top { font-family: 'DM Serif Display', serif; font-style: italic; font-weight: 400; font-size: 15px; color: var(--ink-soft); }
.brand .bottom { font-family: 'DM Serif Display', serif; font-weight: 700; font-size: 21px; letter-spacing: 1px; margin-top: 2px; }
.nav-cta { border: 0.5px solid var(--ink); padding: 8px 18px; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; background: transparent; color: var(--ink); }
.nav-cta:hover { background: var(--ink); color: var(--paper); }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; width: 26px; height: 20px; position: relative; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ''; position: absolute; left: 0; width: 100%; height: 1.5px; background: var(--ink); transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
}
.nav-toggle span { top: 9px; }
.nav-toggle span::before { top: -8px; }
.nav-toggle span::after { top: 8px; }
.nav-toggle.open span { background: transparent; }
.nav-toggle.open span::before { top: 0; transform: rotate(45deg); }
.nav-toggle.open span::after { top: 0; transform: rotate(-45deg); }

.nav-mobile-panel {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(320px, 82vw); z-index: 200;
  background: var(--paper); box-shadow: -8px 0 30px rgba(0,0,0,0.08);
  padding: 100px 32px 40px; display: flex; flex-direction: column; gap: 4px;
  transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-mobile-panel.open { transform: translateX(0); }
.nav-mobile-panel a {
  font-family: 'DM Serif Display', serif; font-style: italic; font-size: 22px; color: var(--ink);
  padding: 14px 0; border-bottom: 0.5px solid var(--line);
}
.nav-mobile-panel a.nav-cta { font-family: 'DM Sans', sans-serif; font-style: normal; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; text-align: center; border: 0.5px solid var(--ink); margin-top: 20px; padding: 14px 0; }
.nav-scrim {
  position: fixed; inset: 0; z-index: 199; background: rgba(20,20,18,0.35);
  opacity: 0; pointer-events: none; transition: opacity 0.4s ease;
}
.nav-scrim.open { opacity: 1; pointer-events: auto; }

@media (max-width: 900px) {
  nav.site-nav { grid-template-columns: 1fr auto 1fr; gap: 12px; padding: 18px 20px; }
  .nav-links-left, .nav-links-right { display: none; }
  .brand { grid-column: 2; }
  .nav-toggle { display: block; grid-column: 1; justify-self: start; }
}

/* =========================================================
   Buttons
   ========================================================= */
.btn-primary { background: var(--ink); color: var(--paper); border: none; padding: 15px 40px; font-size: 11px; cursor: pointer; letter-spacing: 3px; text-transform: uppercase; font-family: 'DM Sans', sans-serif; display: inline-block; }
.btn-primary:hover { background: var(--ink-soft); }
.btn-outline { background: transparent; color: #fff; border: 0.5px solid rgba(255,255,255,0.6); padding: 14px 44px; font-size: 11px; cursor: pointer; letter-spacing: 3px; text-transform: uppercase; font-family: 'DM Sans', sans-serif; transition: background 0.25s, color 0.25s; display: inline-block; }
.btn-outline:hover { background: #fff; color: var(--ink); }
.btn-line { background: transparent; color: var(--ink); border: 0.5px solid var(--line); padding: 13px 40px; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; font-family: 'DM Sans', sans-serif; display: inline-block; }
.btn-line:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.hero-btn-2.btn-line { background: #fff; color: var(--ink); border-color: #fff; }
.hero-btn-2.btn-line:hover { background: transparent; color: #fff; border-color: rgba(255,255,255,0.6); }

/* =========================================================
   HERO (homepage)
   ========================================================= */
.hero { position: relative; height: 700px; overflow: hidden; }
.hero-media { position: absolute; inset: 0; }
.hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(0.9) brightness(0.85); opacity: 0; transition: opacity 1.4s ease; }
.hero-media img.active { opacity: 1; }
.hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,20,18,0.2) 0%, rgba(20,20,18,0.65) 100%); z-index: 1; }
.hero-content { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 0 40px; z-index: 2; }
.hero-text { transition: opacity 0.5s ease; }
.hero-text.out { opacity: 0; }
.hero-eyebrow { font-size: 11px; color: #e5e3dc; letter-spacing: 5px; text-transform: uppercase; margin-bottom: 24px; }
.hero-line1 { font-family: 'DM Serif Display', serif; font-style: italic; font-weight: 400; font-size: clamp(28px, 4vw, 42px); color: #f2f0ea; margin-bottom: 2px; }
.hero-line2 { font-family: 'DM Serif Display', serif; font-weight: 700; font-size: clamp(38px, 8vw, 76px); color: #fff; line-height: 1.1; }
.hero-dots { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); display: flex; gap: 12px; z-index: 3; }
.hero-dots button { width: 30px; height: 3px; border-radius: 2px; background: rgba(255,255,255,0.35); display: block; border: none; padding: 0; cursor: pointer; transition: background 0.3s ease; position: relative; overflow: hidden; }
.hero-dots button.active { background: rgba(255,255,255,0.35); }
.hero-dots button.active::after { content: ''; position: absolute; inset: 0; background: #fff; transform-origin: left; animation: hero-dot-fill 6s linear; }
@keyframes hero-dot-fill { from { transform: scaleX(0); } to { transform: scaleX(1); } }

/* Simple sub-page hero (inside pages) */
.page-hero { position: relative; height: min(45vh, 360px); min-height: 280px; overflow: hidden; }
.page-hero picture { display: block; width: 100%; height: 100%; }
.page-hero img { filter: saturate(0.9) brightness(0.8); }
.page-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,20,18,0.1) 0%, rgba(20,20,18,0.7) 100%); }
.page-hero-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 40px 24px; z-index: 2; max-width: 1120px; margin: 0 auto; }
.page-hero-eyebrow { font-size: 11px; color: #e5e3dc; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 14px; }
.page-hero-title { font-family: 'DM Serif Display', serif; font-style: italic; font-weight: 400; font-size: clamp(32px, 6vw, 54px); color: #fff; line-height: 1.15; max-width: 780px; margin: 0; }
.page-hero-loc { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.85); font-size: 13px; margin-top: 12px; }

@media (max-width: 900px) {
  .page-hero { height: min(35vh, 280px); min-height: 200px; }
  .page-hero-content { padding: 28px 20px; }
}

.section-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; flex-wrap: wrap; gap: 16px; }
.view-all { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; border-bottom: 0.5px solid var(--ink); padding-bottom: 4px; cursor: pointer; white-space: nowrap; }
.view-all:hover { color: var(--ink-soft); border-color: var(--ink-soft); }

.page-head { padding: 56px 24px 40px; text-align: center; }
.page-sub { font-size: 15px; color: var(--ink-soft); max-width: 520px; margin: 20px auto 0; line-height: 1.8; font-weight: 300; }

/* =========================================================
   Intro quote
   ========================================================= */
.intro { padding: 44px 40px; text-align: center; }
.intro-quote-wrap { position: relative; max-width: 960px; margin: 0 auto; min-height: 3.4em; }
.intro-quote { position: absolute; inset: 0; opacity: 0; transition: opacity 0.7s ease; display: flex; align-items: center; justify-content: center; }
.intro-quote.active { position: relative; opacity: 1; }
.intro blockquote { font-family: 'DM Serif Display', serif; font-style: italic; font-size: clamp(18px, 2.4vw, 24px); line-height: 1.5; max-width: 900px; margin: 0 auto; color: var(--ink); }
.intro .attribution { margin-top: 16px; }
.intro-dots { display: flex; gap: 8px; justify-content: center; margin-top: 18px; }
.intro-dots span { width: 18px; height: 2px; background: var(--line); cursor: pointer; transition: background 0.2s; }
.intro-dots span.active { background: var(--ink); }

/* =========================================================
   Filter / tag / sort pills
   ========================================================= */
.filter-bar, .tag-bar, .controls-bar { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; padding: 0 24px 50px; }
.controls-bar { justify-content: space-between; max-width: 1328px; margin: 0 auto; }
.filter-group { display: flex; gap: 10px; flex-wrap: wrap; }
.filter-pill, .tag-pill { border: 0.5px solid var(--line); background: transparent; color: var(--ink); padding: 9px 20px; font-size: 12px; letter-spacing: 1px; cursor: pointer; font-family: 'DM Sans', sans-serif; transition: all 0.2s; }
.filter-pill.active, .filter-pill:hover, .tag-pill.active, .tag-pill:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.sort-select { border: 0.5px solid var(--line); background: var(--paper); color: var(--ink); padding: 9px 16px; font-size: 12px; letter-spacing: 1px; font-family: 'DM Sans', sans-serif; cursor: pointer; }

/* =========================================================
   Signature experiences — asymmetric grid (homepage)
   ========================================================= */
.experiences-section { padding: 110px 24px 130px; }
.experiences-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 6px; max-width: 1328px; margin: 0 auto; }
.exp-large { position: relative; height: 620px; overflow: hidden; cursor: pointer; }
.exp-stack { display: flex; flex-direction: column; gap: 6px; }
.exp-small { position: relative; height: 307px; overflow: hidden; cursor: pointer; }
.exp-large img, .exp-small img { transition: transform 0.7s ease; }
@media (hover: hover) and (pointer: fine) {
  .exp-large:hover img, .exp-small:hover img { transform: scale(1.06); }
}
.exp-shade { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,0.7) 100%); }
.exp-info { position: absolute; bottom: 32px; left: 32px; right: 32px; z-index: 2; }
.exp-large .exp-info { bottom: 44px; left: 44px; right: 44px; }
.exp-tag { font-size: 10px; color: #e5e3dc; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 10px; }
.exp-large .exp-title { font-family: 'DM Serif Display', serif; font-style: italic; font-size: clamp(24px,3vw,38px); color: #fff; line-height: 1.15; margin-bottom: 12px; }
.exp-small .exp-title { font-family: 'DM Serif Display', serif; font-style: italic; font-size: 21px; color: #fff; line-height: 1.2; }
.exp-desc { font-size: 13px; color: rgba(255,255,255,0.85); font-weight: 300; max-width: 380px; line-height: 1.6; }
.exp-media { position: relative; width: 100%; height: 100%; }
.exp-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1.1s ease; }
.exp-media img.active { opacity: 1; }
.exp-text-fade { transition: opacity 0.5s ease; }
.exp-text-fade.out { opacity: 0; }
.exp-dots { display: flex; gap: 8px; justify-content: center; margin-top: 28px; }
.exp-dots span { width: 22px; height: 2px; background: var(--line); cursor: pointer; transition: background 0.2s; }
.exp-dots span.active { background: var(--ink); }

@media (max-width: 900px) {
  .hero { height: min(64vh, 520px); }
  .experiences-section { padding: 56px 24px 70px; }
  .exp-preview-section, .journal-section { padding: 64px 24px; }
  .destinations-band { padding: 56px 24px; }
  .statement { height: 420px; }
  .statement-content { padding: 0 24px; }
  .philosophy-section { padding: 64px 24px; }
  .cta-section { padding: 64px 24px; }
  .section-head { margin-bottom: 28px; }
  .experiences-grid { grid-template-columns: 1fr; }
  .exp-large { height: 380px; }
  .exp-stack { flex-direction: row; }
  .exp-small { height: 240px; flex: 1 1 0; min-width: 0; }
}

/* =========================================================
   Destinations by state (homepage)
   ========================================================= */
.destinations-band { background: var(--paper-alt); text-align: center; padding: 90px 24px; }
.destinations-band .section-head { justify-content: center; flex-direction: column; align-items: center; margin-bottom: 40px; }
.state-grid { display: grid; grid-template-columns: 1.5fr 1fr; grid-template-rows: repeat(3, 1fr); gap: 16px; max-width: 1328px; height: 480px; margin: 0 auto; }
.state-card { position: relative; display: block; overflow: hidden; border-radius: 4px; cursor: pointer; }
.state-card:nth-child(1) { grid-column: 1; grid-row: 1 / span 3; }
.state-card:nth-child(2) { grid-column: 2; grid-row: 1; }
.state-card:nth-child(3) { grid-column: 2; grid-row: 2; }
.state-card:nth-child(4) { grid-column: 2; grid-row: 3; }
.state-card .exp-media { position: absolute; inset: 0; }
@media (hover: hover) and (pointer: fine) {
  .state-card:hover .exp-media img.active { transform: scale(1.05); }
}
.state-card .exp-media img { transition: opacity 1.1s ease, transform 0.6s ease; }
.state-card-shade { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.72) 100%); }
.state-info { position: absolute; left: 20px; right: 20px; bottom: 16px; z-index: 2; transition: opacity 0.3s ease; }
.state-name { font-family: 'DM Serif Display', serif; font-style: italic; font-size: 19px; color: #fff; }
.state-tagline { font-size: 11px; color: rgba(255,255,255,0.8); letter-spacing: 0.3px; margin-top: 4px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.state-card:nth-child(1) .state-info { left: 28px; right: 28px; bottom: 24px; }
.state-card:nth-child(1) .state-name { font-size: 26px; }
.state-card:nth-child(1) .state-tagline { font-size: 13px; margin-top: 8px; }
.destinations-band .section-sub { margin-top: 10px; font-size: 14px; color: var(--ink-mute); max-width: 480px; margin-left: auto; margin-right: auto; }

@media (max-width: 900px) {
  .state-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 140px 140px; height: auto; }
  .state-card:nth-child(1) { grid-column: 1 / span 2; grid-row: 1; }
  .state-card:nth-child(2) { grid-column: 1; grid-row: 2; }
  .state-card:nth-child(3) { grid-column: 2; grid-row: 2; }
  .state-card:nth-child(4) { grid-column: 1 / span 2; grid-row: 3; }
}

/* =========================================================
   Signature statement (full-bleed philosophy quote)
   ========================================================= */
.statement { position: relative; height: 520px; overflow: hidden; }
.statement img { filter: saturate(0.85) brightness(0.6); }
.statement::after { content: ''; position: absolute; inset: 0; background: rgba(20,20,18,0.25); }
.statement-content { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 0 40px; }
.statement-content > * { max-width: 900px; }
.statement-eyebrow { font-size: 11px; color: rgba(255,255,255,0.75); letter-spacing: 4px; text-transform: uppercase; margin-bottom: 28px; }
.statement-text { font-family: 'DM Serif Display', serif; font-style: italic; font-size: clamp(24px, 4vw, 44px); color: #fff; line-height: 1.4; }
.statement-text .accent { font-weight: 700; font-style: normal; }
.statement-sig { margin-top: 32px; font-size: 13px; color: rgba(255,255,255,0.7); letter-spacing: 1px; }

/* Dark philosophy section variant (about page) */
.philosophy-section { background: linear-gradient(160deg, var(--ink) 0%, #33322c 100%); padding: 100px 24px; text-align: center; }
.philosophy-eyebrow { font-size: 11px; color: rgba(255,255,255,0.6); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 28px; }
.philosophy-text { font-family: 'DM Serif Display', serif; font-style: italic; font-size: clamp(24px, 3.6vw, 40px); color: #fff; line-height: 1.5; max-width: 820px; margin: 0 auto; }
.philosophy-text .accent { font-style: normal; font-weight: 700; }

/* =========================================================
   Experiences preview (editorial, homepage)
   ========================================================= */
.exp-preview-section { padding: 110px 24px; }
.exp-preview-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; max-width: 1328px; margin: 0 auto; }
.exp-preview-card { cursor: pointer; }
.exp-preview-photo { height: 320px; overflow: hidden; margin-bottom: 24px; }
.exp-preview-eyebrow { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 12px; }
.exp-preview-title { font-family: 'DM Serif Display', serif; font-style: italic; font-size: 26px; margin-bottom: 12px; }
.exp-preview-desc { font-size: 14px; color: var(--ink-soft); line-height: 1.75; font-weight: 300; max-width: 460px; margin-bottom: 16px; }
.exp-preview-link { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; border-bottom: 0.5px solid var(--ink); padding-bottom: 3px; display: inline-block; }

@media (max-width: 900px) { .exp-preview-grid { grid-template-columns: 1fr; } }

/* =========================================================
   Journal / blog grid (homepage preview + index)
   ========================================================= */
.journal-section { background: var(--paper-alt); padding: 100px 24px; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; max-width: 1328px; margin: 0 auto; }
.blog-photo { height: 220px; margin-bottom: 24px; cursor: pointer; overflow: hidden; }
.blog-photo img { transition: opacity 0.25s; }
.blog-photo:hover img { opacity: 0.85; }
.blog-tag { font-size: 9px; color: var(--ink-mute); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px; }
.blog-title { font-family: 'DM Serif Display', serif; font-style: italic; font-size: 19px; line-height: 1.4; cursor: pointer; }
.blog-title:hover { color: var(--ink-soft); }

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

/* =========================================================
   CTA band
   ========================================================= */
.cta-section { padding: 100px 24px; background: linear-gradient(160deg, var(--ink) 0%, #33322c 100%); text-align: center; }
.cta-section .eyebrow { margin-bottom: 24px; color: var(--ink-mute); }

/* =========================================================
   Footer
   ========================================================= */
footer.site-footer { background: var(--ink); color: var(--ink-mute); padding: 72px 24px 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; max-width: 1328px; margin-left: auto; margin-right: auto; }
.footer-brand { font-family: 'DM Serif Display', serif; font-weight: 700; font-size: 19px; color: var(--paper); letter-spacing: 1px; margin-bottom: 16px; }
.footer-desc { font-size: 13px; line-height: 1.8; max-width: 260px; }
.footer-col-title { font-size: 10px; color: var(--paper); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 18px; }
.footer-col a { display: block; line-height: 2.2; font-size: 13px; }
.footer-col a:hover { color: var(--paper); }
.footer-bottom { border-top: 0.5px solid #4a4943; padding-top: 28px; font-size: 11px; letter-spacing: 1px; text-align: center; max-width: 1328px; margin: 0 auto; }
.footer-links { display: flex; justify-content: center; gap: 24px; font-size: 12px; margin-bottom: 20px; flex-wrap: wrap; }
.footer-links a:hover { color: var(--paper); }
.footer-legal { display: flex; justify-content: center; gap: 18px; margin-top: 14px; font-size: 10px; letter-spacing: 0.5px; flex-wrap: wrap; }
.footer-legal a { text-transform: none; }
.footer-legal a:hover { color: var(--paper); }

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

.whatsapp-float {
  position: fixed; right: 24px; bottom: 24px; z-index: 150;
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--ink); color: var(--paper);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(20,20,18,0.28);
  transition: transform 0.2s ease, background 0.2s ease;
}
@media (hover: hover) and (pointer: fine) {
  .whatsapp-float:hover { background: var(--ink-soft); transform: scale(1.06); }
}
@media (max-width: 640px) { .whatsapp-float { right: 16px; bottom: 16px; width: 48px; height: 48px; } }

/* =========================================================
   Masonry (destinations index)
   ========================================================= */
.masonry { columns: 3 260px; column-gap: 16px; padding: 0 24px 80px; max-width: 1328px; margin: 0 auto; }
.masonry-item { display: block; break-inside: avoid; margin-bottom: 16px; position: relative; overflow: hidden; cursor: pointer; }
.masonry-item img { transition: transform 0.5s; }
.masonry-item:hover img { transform: scale(1.05); }
.masonry-item .shade { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,0.7) 100%); }
.masonry-item .info { position: absolute; bottom: 18px; left: 18px; right: 18px; z-index: 2; }
.m-eyebrow { font-size: 10px; color: #e5e3dc; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 6px; }
.m-title { font-family: 'DM Serif Display', serif; font-style: italic; font-size: 19px; color: #fff; }
.load-more { text-align: center; padding-bottom: 80px; }

@media (max-width: 900px) { .masonry { columns: 2 200px; } }
@media (max-width: 480px) { .masonry { columns: 1; } }

/* =========================================================
   Destination / experience detail — description + info strip
   ========================================================= */
.desc-section { padding: 64px 0 48px; }
.desc-section p { font-size: 16px; line-height: 1.9; color: var(--ink-soft); font-weight: 300; max-width: 720px; }
.desc-section p + p { margin-top: 18px; }

.info-strip { border-top: 0.5px solid var(--line); border-bottom: 0.5px solid var(--line); padding: 36px 0; }
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.info-label { font-size: 10px; color: var(--ink-mute); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px; }
.info-value { font-family: 'DM Serif Display', serif; font-style: italic; font-size: 20px; color: var(--ink); }

@media (max-width: 900px) { .info-grid { grid-template-columns: 1fr; gap: 20px; } }

/* Gallery grid (shared: destination + experience detail) */
.gallery-section { padding: 72px 0; }
.gallery-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 6px; margin-top: 36px; grid-auto-rows: 200px; }
.gallery-grid > div:nth-child(1) { grid-row: span 2; }
.gallery-item { overflow: hidden; cursor: pointer; }
.gallery-item img { transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.05); }

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
  .gallery-grid > div:nth-child(1) { grid-column: span 2; grid-row: span 1; height: 220px; }
}

.nearby-section, .related-section-alt { background: var(--paper-alt); padding: 72px 0 80px; }
.nearby-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 36px; }
.nearby-card { cursor: pointer; }
.nearby-photo { height: 200px; overflow: hidden; margin-bottom: 18px; }
.nearby-eyebrow { font-size: 10px; color: var(--ink-mute); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px; }
.nearby-title { font-family: 'DM Serif Display', serif; font-style: italic; font-size: 19px; color: var(--ink); }

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

.map-section { padding: 0 0 80px; }
.map-box { height: 320px; background: var(--paper-alt); border: 0.5px solid var(--line); display: flex; align-items: center; justify-content: center; }
.map-box span { font-size: 12px; color: var(--ink-mute); letter-spacing: 1px; text-transform: uppercase; }

/* =========================================================
   Experiences index card grid (price-forward)
   ========================================================= */
.exp-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; padding: 0 24px 40px; max-width: 1328px; margin: 0 auto; }
.exp-card { border: 0.5px solid var(--line); overflow: hidden; cursor: pointer; }
.exp-photo { height: 220px; position: relative; overflow: hidden; }
.exp-photo img { transition: transform 0.5s; }
.exp-card:hover .exp-photo img { transform: scale(1.06); }
.exp-badge { position: absolute; top: 14px; left: 14px; background: #fff; padding: 5px 12px; font-size: 10px; letter-spacing: 1px; text-transform: uppercase; }
.exp-body { padding: 22px; }
.exp-card .exp-eyebrow { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 10px; }
.exp-card .exp-title { font-family: 'DM Serif Display', serif; font-style: italic; font-size: 20px; margin-bottom: 14px; color: var(--ink); }
.exp-tags { display: flex; gap: 6px; margin-bottom: 16px; flex-wrap: wrap; }
.exp-tags span { border: 0.5px solid var(--line); padding: 4px 10px; font-size: 10px; color: var(--ink-soft); }
.exp-footer { display: flex; justify-content: space-between; align-items: center; border-top: 0.5px solid var(--line); padding-top: 14px; }
.exp-price { font-family: 'DM Serif Display', serif; font-size: 17px; }
.exp-price .unit { font-size: 10px; color: var(--ink-mute); display: block; margin-top: 2px; }
.exp-price-note { font-family: 'DM Sans', sans-serif; font-style: italic; font-size: 13px; color: var(--ink-soft); max-width: 220px; }

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

/* =========================================================
   Experience detail — facts bar / narrative / itinerary / inclusions
   ========================================================= */
.facts-bar { border-bottom: 0.5px solid var(--line); padding: 44px 0; }
.facts-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; align-items: center; }
.facts-grid-3 { grid-template-columns: repeat(3, 1fr); }
.fact-label { font-size: 10px; color: var(--ink-mute); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 10px; }
.fact-value { font-family: 'DM Serif Display', serif; font-style: italic; font-size: 24px; color: var(--ink); }
.fact-value-sm { font-size: 16px; line-height: 1.4; }
.fact-sub { font-size: 11px; color: var(--ink-soft); margin-top: 4px; display: flex; align-items: center; gap: 5px; }
.fact-sub svg { width: 12px; height: 12px; flex-shrink: 0; }
.fact-price-note { font-size: 12.5px; font-style: italic; color: var(--ink-soft); margin-top: 20px; max-width: 640px; }

@media (max-width: 900px) { .facts-grid, .facts-grid-3 { grid-template-columns: 1fr; gap: 20px; } }

/* Tabbed section: Overview / Itinerary / Inclusions / Gallery */
.exp-tabs-section { padding: 60px 0 100px; }
.exp-tabs-nav { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 52px; }
.exp-tab-btn {
  background: transparent; border: 0.5px solid var(--line); border-radius: 999px; cursor: pointer;
  font-family: 'DM Sans', sans-serif; font-size: 12.5px; letter-spacing: 1px; text-transform: uppercase;
  color: var(--ink-soft); padding: 12px 24px; transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.exp-tab-btn:hover { border-color: var(--ink-soft); color: var(--ink); }
.exp-tab-btn.active { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.exp-tab-panel { display: none; }
.exp-tab-panel.active { display: block; animation: exp-tab-fade 0.4s ease; }
@keyframes exp-tab-fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 900px) {
  .exp-tabs-nav { flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
  .exp-tab-btn { padding: 10px 18px; font-size: 12px; }
}

.exp-tab-panel p { font-size: 16px; line-height: 1.9; color: var(--ink-soft); font-weight: 300; max-width: 720px; }
.exp-tab-panel p + p { margin-top: 20px; }

.itinerary-list { position: relative; }
.itinerary-list::before { content: ''; position: absolute; left: 0; top: 8px; bottom: 8px; width: 0.5px; background: var(--line); }
.day-item { position: relative; padding-left: 56px; margin-bottom: 56px; }
.day-item:last-child { margin-bottom: 0; }
.day-dot { position: absolute; left: -5px; top: 4px; width: 10px; height: 10px; border-radius: 50%; background: var(--ink); }
.day-label { font-size: 10px; color: var(--ink-mute); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 10px; }
.day-title { font-family: 'DM Serif Display', serif; font-style: italic; font-size: 24px; color: var(--ink); margin-bottom: 14px; }
.day-desc { font-size: 14px; color: var(--ink-soft); line-height: 1.85; font-weight: 300; max-width: 640px; margin-bottom: 20px; }
.day-photo { height: 280px; max-width: 640px; overflow: hidden; margin-top: 4px; }

.inclusions-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.inclusions-title { font-size: 10px; color: var(--ink-mute); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 22px; }
.inclusions-list { list-style: none; padding: 0; margin: 0; font-size: 14px; line-height: 2.3; font-weight: 300; }
.inclusions-list.included li { color: var(--ink); }
.inclusions-list.excluded li { color: var(--ink-mute); }
.inclusions-list li { position: relative; padding-left: 26px; }
.inclusions-list li::before {
  content: '';
  position: absolute; left: 0; top: 0.7em;
  width: 13px; height: 13px;
  background-color: currentColor;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-size: contain; mask-size: contain;
  -webkit-mask-position: center; mask-position: center;
}
.inclusions-list.included li::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}
.inclusions-list.excluded li::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E");
}

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

.faq-list { max-width: 760px; display: flex; flex-direction: column; }
.faq-item { border-bottom: 0.5px solid var(--line); padding: 22px 0; }
.faq-item summary { cursor: pointer; font-size: 16px; color: var(--ink); font-weight: 500; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; float: right; color: var(--ink-mute); font-weight: 300; }
.faq-item[open] summary::after { content: '\2212'; }
.faq-item p { font-size: 15px; line-height: 1.9; color: var(--ink-soft); font-weight: 300; margin: 16px 0 0; max-width: 680px; }

.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; }
.related-card { cursor: pointer; }
.related-photo { height: 220px; overflow: hidden; margin-bottom: 20px; }
.related-eyebrow { font-size: 10px; color: var(--ink-mute); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 10px; }
.related-title { font-family: 'DM Serif Display', serif; font-style: italic; font-size: 20px; color: var(--ink); }

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

/* =========================================================
   Journal index — featured + post grid + pagination
   ========================================================= */
.featured { padding: 0 24px 64px; max-width: 1328px; margin: 0 auto; }
.featured-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 40px; align-items: stretch; }
.featured-eyebrow { font-size: 11px; color: var(--ink-mute); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px; }
.featured-title { font-family: 'DM Serif Display', serif; font-style: italic; font-size: clamp(26px, 3.4vw, 38px); color: var(--ink); line-height: 1.3; margin-bottom: 16px; }
.featured-desc { font-size: 15px; color: var(--ink-soft); line-height: 1.8; font-weight: 300; margin-bottom: 20px; }
.featured-meta { display: flex; align-items: center; gap: 12px; }
.avatar { width: 36px; height: 36px; border-radius: 50%; overflow: hidden; }
.featured-photo { display: block; height: 100%; min-height: 460px; overflow: hidden; }
.read-time { color: var(--ink); font-weight: 500; }

.post-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 40px; padding: 0 24px 60px; max-width: 1328px; margin: 0 auto; }
@media (max-width: 900px) { .post-grid { grid-template-columns: 1fr; } }
.post-photo { display: block; height: 220px; overflow: hidden; margin-bottom: 20px; cursor: pointer; }
.post-photo img { transition: transform 0.5s; }
.post-photo:hover img { transform: scale(1.05); }
.post-eyebrow { font-size: 10px; color: var(--ink-mute); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 10px; }
.post-title { font-family: 'DM Serif Display', serif; font-style: italic; font-size: 22px; line-height: 1.3; margin-bottom: 12px; cursor: pointer; }
.post-desc { font-size: 13px; color: var(--ink-soft); line-height: 1.7; font-weight: 300; margin-bottom: 14px; }
.post-date { font-size: 11px; color: var(--ink-mute); }

@media (max-width: 900px) { .featured-grid { grid-template-columns: 1fr; } .featured-photo { order: -1; height: 220px; min-height: 0; } }

.pagination { display: flex; justify-content: center; gap: 10px; padding-bottom: 80px; }
.page-num { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border: 0.5px solid var(--line); font-size: 13px; cursor: pointer; }
.page-num.active { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.page-num:hover:not(.active) { border-color: var(--ink-soft); }

/* =========================================================
   Journal post — article
   ========================================================= */
.article-head { max-width: 760px; margin: 0 auto; padding: 56px 24px 0; text-align: center; }
.article-eyebrow { font-size: 11px; color: var(--ink-mute); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px; }
.article-title { font-family: 'DM Serif Display', serif; font-style: italic; font-weight: 400; font-size: clamp(32px, 5vw, 52px); line-height: 1.25; color: var(--ink); margin: 0 0 24px; }
.article-meta { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 48px; }

.cover-photo { height: min(52vh, 460px); max-width: 1200px; margin: 0 auto; overflow: hidden; padding: 0 24px; }
.cover-photo img { border-radius: 2px; }

.article-body { max-width: 680px; margin: 0 auto; padding: 64px 24px 0; }
.article-body p { font-size: 17px; line-height: 1.95; color: var(--ink-soft); font-weight: 300; }
.article-body p + p { margin-top: 26px; }
.article-body h2 { font-family: 'DM Serif Display', serif; font-style: italic; font-weight: 400; font-size: clamp(20px, 2.4vw, 26px); color: var(--ink); margin: 48px 0 18px; }
.article-body h2:first-child { margin-top: 0; }
.article-body ul { margin: 20px 0; padding: 0; list-style: none; }
.article-body li { font-size: 17px; line-height: 1.9; color: var(--ink-soft); font-weight: 300; padding-left: 22px; position: relative; }
.article-body li + li { margin-top: 12px; }
.article-body li::before { content: ''; position: absolute; left: 0; top: 13px; width: 6px; height: 6px; border-radius: 50%; background: var(--ink-mute); }
.article-body strong { color: var(--ink); font-weight: 500; }
.article-body a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--line); }
.article-body a:hover { text-decoration-color: var(--ink); }

.pull-quote { font-family: 'DM Serif Display', serif; font-style: italic; font-size: clamp(24px, 3.2vw, 32px); color: var(--ink); line-height: 1.5; text-align: center; margin: 56px auto; max-width: 600px; }

.full-bleed-img { width: 100vw; position: relative; left: 50%; right: 50%; margin-left: -50vw; margin-right: -50vw; height: min(50vh, 420px); margin-top: 56px; margin-bottom: 56px; overflow: hidden; }

.tags-row { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; max-width: 680px; margin: 56px auto 0; padding: 0 24px; }
.tag { border: 0.5px solid var(--line); padding: 6px 16px; font-size: 11px; letter-spacing: 1px; color: var(--ink-soft); }

.author-box { max-width: 680px; margin: 56px auto 0; padding: 0 24px; }
.author-card { border-top: 0.5px solid var(--line); border-bottom: 0.5px solid var(--line); padding: 28px 0; display: flex; align-items: center; gap: 16px; }
.author-avatar { width: 56px; height: 56px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.author-name { font-family: 'DM Serif Display', serif; font-style: italic; font-size: 18px; margin-bottom: 4px; }
.author-bio { font-size: 13px; color: var(--ink-soft); line-height: 1.6; }

/* =========================================================
   About page
   ========================================================= */
.story-section { padding: 80px 24px; }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; max-width: 1120px; margin: 0 auto; }
.story-photo { height: 420px; overflow: hidden; }
.story-eyebrow { font-size: 10px; color: var(--ink-mute); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px; }
.story-title { font-family: 'DM Serif Display', serif; font-style: italic; font-weight: 400; font-size: clamp(26px, 3vw, 34px); margin: 0 0 20px; }
.story-text { font-size: 15px; color: var(--ink-soft); line-height: 1.9; font-weight: 300; }
.story-text p + p { margin-top: 18px; }

@media (max-width: 900px) { .story-grid { grid-template-columns: 1fr; } .story-photo { order: -1; height: 280px; } }

.values-section { padding: 90px 24px; }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; max-width: 1120px; margin: 0 auto; }
.value-item { text-align: center; }
.value-title { font-family: 'DM Serif Display', serif; font-style: italic; font-size: 20px; margin-bottom: 14px; }
.value-desc { font-size: 14px; color: var(--ink-soft); line-height: 1.8; font-weight: 300; }

.team-section { background: var(--paper-alt); padding: 90px 24px 100px; }
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; max-width: 1120px; margin: 0 auto; }
.team-photo { height: 260px; overflow: hidden; margin-bottom: 20px; }
.team-name { font-family: 'DM Serif Display', serif; font-style: italic; font-size: 20px; margin-bottom: 6px; }
.team-role { font-size: 11px; color: var(--ink-mute); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 12px; }
.team-bio { font-size: 13px; color: var(--ink-soft); line-height: 1.7; font-weight: 300; }

@media (max-width: 900px) { .values-grid, .team-grid { grid-template-columns: 1fr; } }

/* =========================================================
   Contact page — form + sidebar
   ========================================================= */
.contact-layout { display: grid; grid-template-columns: 1.3fr 1fr; gap: 64px; padding: 56px 24px 100px; max-width: 1120px; margin: 0 auto; align-items: start; }
.form-group { margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group label { display: block; font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 10px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; border: none; border-bottom: 0.5px solid var(--line); background: transparent;
  padding: 10px 0; font-size: 15px; color: var(--ink); font-family: 'DM Sans', sans-serif; font-weight: 300;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-bottom-color: var(--ink); }
.form-group textarea { resize: vertical; min-height: 90px; }
.submit-btn {
  background: var(--ink); color: var(--paper); border: none; padding: 15px 44px;
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase; cursor: pointer;
  font-family: 'DM Sans', sans-serif; margin-top: 12px;
}
.submit-btn:hover { background: var(--ink-soft); }

.sidebar-card { border: 0.5px solid var(--line); padding: 32px 28px; margin-bottom: 24px; }
.sidebar-title { font-family: 'DM Serif Display', serif; font-style: italic; font-size: 19px; margin-bottom: 20px; }
.contact-row { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 18px; }
.contact-row:last-child { margin-bottom: 0; }
.contact-icon { font-size: 15px; margin-top: 2px; }
.contact-label { font-size: 11px; color: var(--ink-mute); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 4px; }
.contact-value { font-size: 14px; color: var(--ink); }
.social-row { display: flex; gap: 16px; margin-top: 20px; }
.social-row a { font-size: 12px; letter-spacing: 1px; text-transform: uppercase; border-bottom: 0.5px solid var(--ink); padding-bottom: 2px; }
.form-notice { font-size: 13px; padding: 14px 18px; margin-bottom: 24px; border: 0.5px solid var(--line); }
.form-notice.success { color: var(--ink); background: var(--paper-alt); }

@media (max-width: 900px) { .contact-layout { grid-template-columns: 1fr; gap: 48px; } .form-row { grid-template-columns: 1fr; } }

/* =========================================================
   Empty state
   ========================================================= */
.empty-state { padding: 60px 24px; text-align: center; color: var(--ink-mute); font-size: 14px; }
