/* ============================================
   WE ARE FOODIE TRAVELERS — Main Stylesheet
   ============================================ */

:root {
  --cream: #FAF7F2;
  --beige-light: #F2EBE0;
  --beige-mid: #E0D3C0;
  --beige-warm: #C8B49A;
  --brown-accent: #8C6D4F;
  --brown-dark: #5C3D2E;
  --text-dark: #2C1F14;
  --text-body: #4A3728;
  --text-light: #7A6555;
  --white: #FFFFFF;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;

  --max-width: 1200px;
  --nav-height: 72px;

  --shadow-sm: 0 2px 8px rgba(44, 31, 20, 0.08);
  --shadow-md: 0 4px 24px rgba(44, 31, 20, 0.12);
  --shadow-lg: 0 8px 48px rgba(44, 31, 20, 0.18);

  --radius: 8px;
  --transition: 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); color: var(--text-body); background: var(--cream); line-height: 1.7; font-size: 16px; }

/* ---- Site Banner ---- */
#site-banner {
  background: var(--brown-dark);
  color: var(--cream);
  text-align: center;
  padding: 10px 48px 10px 20px;
  font-size: 0.875rem;
  font-family: var(--font-sans);
  position: relative;
  z-index: 200;
  letter-spacing: 0.01em;
}
#site-banner span { display: inline; }
#banner-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--cream);
  cursor: pointer;
  font-size: 0.85rem;
  opacity: 0.7;
  padding: 4px 8px;
}
#banner-close:hover { opacity: 1; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* Typography */
h1, h2, h3, h4, h5 { font-family: var(--font-serif); color: var(--text-dark); line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
p { margin-bottom: 1rem; }

/* Layout */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }

/* ---- NAVIGATION ---- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--beige-mid);
  height: var(--nav-height);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 24px;
}
.nav-logo {
  font-family: var(--font-serif); font-size: 1.05rem; font-weight: 700;
  color: var(--text-dark); letter-spacing: 0.04em; text-transform: uppercase;
  white-space: nowrap;
}
.nav-links { display: flex; align-items: center; gap: 40px; }
.nav-links a {
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-body); transition: color var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--brown-accent); }
.nav-right { display: flex; align-items: center; gap: 20px; }
.search-btn {
  background: none; border: none; cursor: pointer; padding: 4px;
  color: var(--text-body); transition: color var(--transition); display: flex; align-items: center;
}
.search-btn:hover { color: var(--brown-accent); }
.nav-instagram { color: var(--text-body); transition: color var(--transition); display: flex; align-items: center; }
.nav-instagram:hover { color: var(--brown-accent); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--text-dark); transition: all var(--transition); }

/* Mobile menu */
.mobile-menu {
  display: none; position: fixed; top: var(--nav-height); left: 0; right: 0; bottom: 0;
  background: var(--cream); z-index: 99; padding: 40px 24px; flex-direction: column; gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: var(--font-serif); font-size: 1.5rem; color: var(--text-dark); }

/* ---- SEARCH OVERLAY ---- */
.search-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(44, 31, 20, 0.55); z-index: 200;
  align-items: flex-start; justify-content: center; padding-top: 80px;
}
.search-overlay.active { display: flex; }
.search-box {
  background: var(--cream); width: 100%; max-width: 640px;
  border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-lg);
  margin: 0 24px;
}
.search-input-row {
  display: flex; align-items: center; gap: 12px;
  border-bottom: 2px solid var(--brown-accent); padding-bottom: 12px;
}
#search-input {
  flex: 1; border: none; background: none; font-family: var(--font-sans);
  font-size: 1.1rem; color: var(--text-dark); outline: none;
}
#search-input::placeholder { color: var(--text-light); }
.search-close { background: none; border: none; cursor: pointer; color: var(--text-light); font-size: 1.4rem; line-height: 1; }
#search-results { margin-top: 16px; max-height: 380px; overflow-y: auto; }
.search-item { padding: 14px 0; border-bottom: 1px solid var(--beige-mid); cursor: pointer; }
.search-item:last-child { border-bottom: none; }
.search-item:hover .search-item-title { color: var(--brown-accent); }
.search-item-title { font-family: var(--font-serif); font-size: 1rem; color: var(--text-dark); margin-bottom: 4px; transition: color var(--transition); }
.search-item-meta { font-size: 0.78rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.06em; }
.search-empty { font-size: 0.95rem; color: var(--text-light); padding: 16px 0; }

/* ---- HERO ---- */
.hero {
  min-height: 88vh; display: flex; align-items: center; justify-content: center;
  text-align: center; position: relative;
  background: linear-gradient(135deg, #F5EDE0 0%, #EDD9C0 50%, #E5C9A5 100%);
  overflow: hidden;
}
.hero-bg-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.28;
}
.hero-content { position: relative; z-index: 1; max-width: 720px; padding: 0 24px; }
.eyebrow {
  display: block; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--brown-accent); margin-bottom: 20px;
}
.hero h1 { font-size: clamp(2.8rem, 8vw, 5.5rem); line-height: 1.08; margin-bottom: 24px; }
.hero-tagline { font-size: 1.05rem; color: var(--text-body); max-width: 480px; margin: 0 auto 36px; }
.btn {
  display: inline-block; padding: 14px 36px; font-family: var(--font-sans);
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; border-radius: 2px; transition: all var(--transition);
  cursor: pointer; border: none;
}
.btn-primary { background: var(--brown-accent); color: var(--white); }
.btn-primary:hover { background: var(--brown-dark); }
.btn-outline { background: transparent; color: var(--text-dark); border: 1.5px solid var(--text-dark); }
.btn-outline:hover { background: var(--text-dark); color: var(--cream); }

/* ---- SECTION HEADER ---- */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .eyebrow { margin-bottom: 14px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { max-width: 520px; margin: 0 auto; color: var(--text-light); font-size: 1rem; }

/* ---- ABOUT STRIP ---- */
.about-strip { background: var(--beige-light); padding: 88px 0; }
.about-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center; max-width: var(--max-width); margin: 0 auto; padding: 0 24px;
}
.about-image {
  aspect-ratio: 4/5; border-radius: var(--radius); overflow: hidden;
  background: var(--beige-mid);
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-text .eyebrow { margin-bottom: 20px; }
.about-text h2 { margin-bottom: 20px; }
.about-text p { font-size: 1.02rem; line-height: 1.85; color: var(--text-body); }
.about-text .btn { margin-top: 24px; }

/* ---- DESTINATIONS GRID ---- */
.dest-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.dest-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 3/4; cursor: pointer;
  box-shadow: var(--shadow-sm); transition: transform var(--transition), box-shadow var(--transition);
}
.dest-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.dest-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.dest-card:hover img { transform: scale(1.05); }
.dest-placeholder { width: 100%; height: 100%; }
.dest-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(44,31,20,0.72) 0%, rgba(44,31,20,0.08) 55%, transparent 100%);
}
.dest-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px 22px; color: var(--white); }
.dest-tag {
  display: inline-block; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; background: rgba(255,255,255,0.18); backdrop-filter: blur(4px);
  padding: 4px 10px; border-radius: 2px; margin-bottom: 10px;
}
.dest-info h3 { color: var(--white); font-size: 1.35rem; margin-bottom: 5px; }
.dest-info span { font-size: 0.82rem; opacity: 0.85; }

/* Color placeholders per destination */
.bg-japan      { background: linear-gradient(145deg, #C4A882, #7A5530); }
.bg-korea      { background: linear-gradient(145deg, #C4A0A0, #7A3F3F); }
.bg-thailand   { background: linear-gradient(145deg, #A0B5A0, #3F6B3F); }
.bg-vietnam    { background: linear-gradient(145deg, #A0AEBB, #3F5E78); }
.bg-indonesia  { background: linear-gradient(145deg, #C4B090, #7A5530); }
.bg-australia  { background: linear-gradient(145deg, #C0BA98, #6B6530); }
.bg-amsterdam  { background: linear-gradient(145deg, #A8B6C0, #3F5F70); }
.bg-portugal   { background: linear-gradient(145deg, #C4906A, #8B3A20); }
.bg-taiwan     { background: linear-gradient(145deg, #B0A8C4, #4A3F78); }
.bg-srilanka   { background: linear-gradient(145deg, #90C4A0, #207840); }
.bg-singapore  { background: linear-gradient(145deg, #A8B8C4, #2A4A60); }

/* Placeholder cards without a real photo yet (e.g. South Korea posts) need the
   color to win over post-card-img/post-list-img's own background — hence the
   two-class selectors here instead of relying on source order. */
.post-card-img.bg-korea,
.post-list-img.bg-korea { background: linear-gradient(145deg, #C4A0A0, #7A3F3F); }

/* ---- POSTS GRID ---- */
.posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.post-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform var(--transition), box-shadow var(--transition);
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.post-card-img {
  aspect-ratio: 16/10; background: var(--beige-mid); overflow: hidden;
}
.post-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.post-card:hover .post-card-img img { transform: scale(1.05); }
.post-card-body { padding: 22px 24px 26px; }
.post-tag {
  display: inline-block; font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--brown-accent); margin-bottom: 10px;
}
.post-card-body h3 { font-size: 1.05rem; line-height: 1.4; margin-bottom: 12px; color: var(--text-dark); }
.post-card-body p {
  font-size: 0.88rem; color: var(--text-light); line-height: 1.65; margin-bottom: 16px;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.read-more {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--brown-accent);
  display: inline-flex; align-items: center; gap: 6px; transition: gap var(--transition);
}
.read-more:hover { gap: 10px; }

/* ---- POST PAGE ---- */
.post-hero-header {
  padding: 80px 0 56px; text-align: center; background: var(--beige-light);
}
.post-hero-header .eyebrow { margin-bottom: 20px; }
.post-hero-header h1 { max-width: 800px; margin: 0 auto 20px; }
.post-meta { font-size: 0.88rem; color: var(--text-light); }
.post-feature-img { width: 100%; max-height: 540px; object-fit: cover; }
.post-body {
  max-width: 760px; margin: 0 auto; padding: 64px 24px 80px;
}
.post-body h2 { margin: 52px 0 20px; }
.post-body h3 { margin: 36px 0 14px; }
.post-body p { font-size: 1.05rem; line-height: 1.88; color: var(--text-body); margin-bottom: 22px; }
.post-body ul, .post-body ol { padding-left: 24px; margin-bottom: 22px; }
.post-body ul { list-style: disc; }
.post-body ol { list-style: decimal; }
.post-body li { font-size: 1.05rem; line-height: 1.8; color: var(--text-body); margin-bottom: 8px; }
.post-body strong { color: var(--text-dark); font-weight: 600; }
.post-body em { font-style: italic; }
.post-body hr { border: none; border-top: 1px solid var(--beige-mid); margin: 52px 0; }
.post-body table { width: 100%; border-collapse: collapse; margin-bottom: 24px; font-size: 0.95rem; }
.post-body th { background: var(--beige-light); padding: 12px 16px; text-align: left; font-weight: 600; color: var(--text-dark); font-family: var(--font-sans); }
.post-body td { padding: 12px 16px; border-bottom: 1px solid var(--beige-mid); }
.post-body blockquote {
  border-left: 3px solid var(--brown-accent); padding-left: 24px;
  margin: 36px 0; font-family: var(--font-serif); font-style: italic;
  font-size: 1.2rem; color: var(--text-dark);
}
.post-body a { color: var(--brown-accent); text-decoration: underline; text-underline-offset: 3px; }
.post-body a:hover { color: var(--brown-dark); }

/* Table of contents */
.toc {
  background: var(--beige-light);
  border-left: 3px solid var(--brown-accent);
  padding: 24px 28px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 36px 0;
}
.toc-title {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brown-accent);
  margin-bottom: 14px;
}
.toc ol { padding-left: 18px; display: flex; flex-direction: column; gap: 8px; }
.toc ol li a { font-size: 0.95rem; color: var(--text-dark); text-decoration: none; transition: color var(--transition); }
.toc ol li a:hover { color: var(--brown-accent); }

/* Guide promo banner */
.guide-promo {
  background: var(--brown-accent); border-radius: var(--radius);
  padding: 28px 32px; margin: 48px 0; text-align: center;
}
.guide-promo p { color: rgba(255,255,255,0.85); font-size: 0.9rem; margin: 0 0 6px; letter-spacing: 0.04em; text-transform: uppercase; font-weight: 600; }
.guide-promo h4 { font-family: var(--font-sans); font-size: 1.2rem; font-weight: 700; color: #fff; margin: 0 0 18px; line-height: 1.3; }
.guide-promo a.guide-promo-btn {
  display: inline-block; background: #fff; color: var(--brown-accent);
  font-family: var(--font-sans); font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none;
  padding: 12px 28px; border-radius: var(--radius); transition: opacity 0.2s;
}
.guide-promo a.guide-promo-btn:hover { opacity: 0.85; }

/* Internal links box */
.internal-links {
  background: var(--beige-light); border-radius: var(--radius);
  padding: 28px 32px; margin: 48px 0;
}
.internal-links h4 { font-family: var(--font-sans); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--brown-accent); margin-bottom: 16px; }
.internal-links ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.internal-links ul li a { font-size: 0.95rem; color: var(--text-dark); transition: color var(--transition); display: inline-flex; align-items: center; gap: 8px; }
.internal-links ul li a:hover { color: var(--brown-accent); }
.internal-links ul li a::before { content: "→"; color: var(--brown-accent); text-decoration: none; }

/* Related posts */
.related-posts { background: var(--beige-light); padding: 72px 0; }

/* ---- DESTINATIONS PAGE ---- */
.dest-page-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.dest-page-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  cursor: pointer; box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.dest-page-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.dest-page-img { aspect-ratio: 4/3; overflow: hidden; background: var(--beige-mid); }
.dest-page-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.dest-page-card:hover .dest-page-img img { transform: scale(1.05); }
.dest-page-body { padding: 20px; background: var(--white); }
.dest-page-body h3 { margin-bottom: 6px; font-size: 1.15rem; }
.dest-page-body p { font-size: 0.85rem; color: var(--text-light); margin-bottom: 0; }

/* Post list (inside destination page) */
.posts-by-dest { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 20px; }
.post-list-card {
  display: flex; gap: 0; background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.post-list-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.post-list-img { width: 180px; flex-shrink: 0; background: var(--beige-mid); overflow: hidden; }
.post-list-img img { width: 100%; height: 100%; object-fit: cover; }
.post-list-body { padding: 24px; flex: 1; }
.post-list-body .post-tag { display: block; margin-bottom: 8px; }
.post-list-body h3 { font-size: 1.05rem; margin-bottom: 8px; }
.post-list-body p { font-size: 0.88rem; color: var(--text-light); margin-bottom: 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

.posts-more { display: contents; }
.posts-more.is-hidden { display: none; }
.btn-see-more {
  display: block; width: fit-content; margin: 4px auto 0; padding: 12px 28px;
  font-family: var(--font-sans); font-size: 0.74rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--brown-accent); background: transparent;
  border: 1.5px solid var(--brown-accent); border-radius: 2px; cursor: pointer;
  transition: all var(--transition);
}
.btn-see-more:hover { background: var(--brown-accent); color: var(--white); }

/* ---- ABOUT PAGE ---- */
.about-page-hero { padding: 100px 0; text-align: center; background: var(--beige-light); }
.about-page-hero h1 { margin-bottom: 20px; }
.about-page-hero p { max-width: 580px; margin: 0 auto; font-size: 1.1rem; color: var(--text-body); }
.about-page-content { max-width: 760px; margin: 0 auto; padding: 72px 24px; }
.about-page-content h2 { margin-bottom: 20px; }
.about-page-content p { font-size: 1.05rem; line-height: 1.85; margin-bottom: 20px; }
.about-photo-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 48px 0; }
.about-photo-duo .photo { border-radius: var(--radius); overflow: hidden; aspect-ratio: 3/4; background: var(--beige-mid); }
.about-photo-duo .photo img { width: 100%; height: 100%; object-fit: cover; }

/* ---- WORK WITH US PAGE ---- */
.work-hero { padding: 100px 0; text-align: center; background: var(--beige-light); }
.work-hero h1 { margin-bottom: 20px; }
.work-hero p { max-width: 560px; margin: 0 auto; font-size: 1.1rem; color: var(--text-body); }
.work-content { max-width: 820px; margin: 0 auto; padding: 72px 24px; }
.work-content h2 { margin-bottom: 20px; }
.work-content p { font-size: 1.05rem; line-height: 1.85; margin-bottom: 20px; }
.stats-row { display: flex; gap: 24px; margin: 48px 0; }
.stat-box { flex: 1; text-align: center; background: var(--beige-light); border-radius: var(--radius); padding: 32px 20px; }
.stat-box .stat-number { font-family: var(--font-serif); font-size: 2.5rem; color: var(--text-dark); display: block; margin-bottom: 8px; }
.stat-box .stat-label { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brown-accent); }
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 40px 0; }
.service-card { background: var(--beige-light); border-radius: var(--radius); padding: 28px; }
.service-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.service-card p { font-size: 0.92rem; color: var(--text-body); margin-bottom: 0; }
.contact-box { background: var(--text-dark); color: var(--cream); border-radius: var(--radius); padding: 48px; text-align: center; margin-top: 56px; }
.contact-box h2 { color: var(--cream); margin-bottom: 16px; }
.contact-box p { color: var(--beige-warm); margin-bottom: 28px; }
.contact-box .btn-primary { background: var(--brown-accent); }

/* ---- PHOTO LAYOUTS (in-post) ---- */

/* Base: all post images respect EXIF rotation, no cropping */
.post-body img {
  image-orientation: from-image;
  display: block;
  border-radius: 4px;
  max-width: 100%;
  height: auto;
}

/* Full-width single image */
.photo-full { margin: 32px 0; }
.photo-full img { width: 100%; height: auto; }

/* 2 portrait photos side by side */
.photo-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 32px 0;
}
.photo-pair img { width: 100%; height: auto; }

/* 3 portrait photos side by side */
.photo-trio {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  margin: 32px 0;
}
.photo-trio img { width: 100%; height: auto; }

/* Portrait photo beside text */
.photo-beside {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 32px;
  align-items: start;
  margin: 32px 0;
}
.photo-beside.right { grid-template-columns: 1fr 300px; }
.photo-beside img { width: 100%; height: auto; }

/* Caption */
.photo-caption {
  font-size: 0.8rem;
  color: var(--text-light);
  text-align: center;
  margin-top: -20px;
  margin-bottom: 32px;
  font-style: italic;
}

/* ---- FOOTER ---- */
footer { background: var(--text-dark); color: var(--beige-warm); padding: 64px 0 32px; }
.footer-inner { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 64px; padding-bottom: 48px; border-bottom: 1px solid rgba(200,180,154,0.18); margin-bottom: 32px; }
.footer-brand-name { font-family: var(--font-serif); color: var(--cream); font-size: 1.05rem; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.75; color: var(--beige-warm); margin-bottom: 0; }
.footer-col h4 { font-family: var(--font-sans); color: var(--cream); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a { font-size: 0.88rem; color: var(--beige-warm); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--cream); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; font-size: 0.78rem; color: var(--text-light); }

/* ---- UTILITIES ---- */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-0 { margin-bottom: 0 !important; }
.bg-beige { background: var(--beige-light); }

/* ---- RESPONSIVE ---- */
@media (max-width: 960px) {
  .dest-grid, .posts-grid, .dest-page-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
  .stats-row { flex-wrap: wrap; }
  .stat-box { flex: 1 1 calc(50% - 12px); }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .dest-grid, .posts-grid, .dest-page-grid, .services-grid, .about-photo-duo { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .post-list-card { flex-direction: column; }
  .post-list-img { width: 100%; height: 180px; }
  .section { padding: 64px 0; }
  .stats-row { flex-direction: column; }
  .photo-pair, .photo-trio { grid-template-columns: 1fr; }
  .photo-beside, .photo-beside.right { grid-template-columns: 1fr; }
}
