/* ════════════════════════════════════════════════
   mystyle.css — Shared styles for all pages
   ════════════════════════════════════════════════ */

/* ── RESET & TOKENS ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink:    #0E0E0F;
  --cream:  #F7F5F0;
  --sage:   #8BA888;
  --gold:   #C9A84C;
  --mid:    #6B6B6B;
  --light:  #E8E5DE;
  --serif:  'DM Serif Display', Georgia, serif;
  --sans:   'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 2.5rem;
  background: rgba(247,245,240,0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--light);
  transition: box-shadow .3s;
}
nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.07); }

.nav-logo {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--ink); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--ink);
  border: none;
  padding: .55rem 1.3rem;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s;
}
.nav-cta:hover { background: var(--sage); }

/* ── BUTTONS ── */
.btn-primary {
  font-size: .8rem; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; text-decoration: none;
  background: var(--ink); color: var(--cream);
  padding: .85rem 2rem;
  display: inline-block;
  transition: background .2s;
}
.btn-primary:hover { background: var(--sage); }

.btn-ghost {
  font-size: .8rem; font-weight: 500; letter-spacing: .08em;
  text-transform: uppercase; text-decoration: none;
  color: var(--mid);
  border-bottom: 1px solid var(--light);
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.btn-ghost:hover { color: var(--ink); border-color: var(--gold); }

.btn-ghost-light {
  font-size: .8rem; font-weight: 500; letter-spacing: .08em;
  text-transform: uppercase; text-decoration: none;
  color: #555;
  border-bottom: 1px solid #333;
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.btn-ghost-light:hover { color: var(--gold); border-color: var(--gold); }

/* ── SECTION SHARED ── */
section { padding: 6rem 2.5rem; }

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 3.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--light);
  flex-wrap: wrap;
  gap: 1rem;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.section-title em { font-style: italic; color: var(--sage); }

.section-link {
  font-size: .75rem; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; color: var(--mid); text-decoration: none;
  border-bottom: 1px solid var(--light);
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.section-link:hover { color: var(--gold); border-color: var(--gold); }

/* ── PAGE HERO (shared across inner pages) ── */
.page-hero {
  padding: 9rem 2.5rem 4rem;
  border-bottom: 1px solid var(--light);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.page-hero-eyebrow {
  font-size: .72rem; font-weight: 500; letter-spacing: .15em;
  text-transform: uppercase; color: var(--sage); margin-bottom: .75rem;
}
.page-hero-title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.0;
  letter-spacing: -0.02em;
}
.page-hero-title em { font-style: italic; color: var(--gold); }
.page-hero-desc {
  font-size: .95rem; color: var(--mid);
  max-width: 420px; line-height: 1.75; margin-top: 1.25rem;
}

/* ── SECTION EYEBROW / HEADING (about/blog inner sections) ── */
.section-eyebrow {
  font-size: .7rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--sage); margin-bottom: .75rem;
}
.section-heading {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 2.5rem;
}
.section-heading em { font-style: italic; color: var(--sage); }

/* ── FOOTER ── */
footer {
  background: var(--ink); color: #666;
  padding: 3rem 2.5rem;
  display: grid; grid-template-columns: 1fr auto;
  align-items: center; gap: 2rem;
  border-top: 1px solid #1a1a1a;
}
.footer-logo { font-family: var(--serif); font-size: 1.1rem; color: var(--cream); }
.footer-copy { font-size: .75rem; margin-top: .25rem; }
.footer-socials { display: flex; gap: 1.5rem; }
.footer-social {
  font-size: .72rem; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; color: #555; text-decoration: none;
  transition: color .2s;
}
.footer-social:hover { color: var(--gold); }

.page-footer-nav {
  padding: 2rem 2.5rem;
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid var(--light);
  flex-wrap: wrap; gap: 1rem;
}

/* ── SIDEBAR WIDGETS (blog) ── */
.blog-sidebar { display: flex; flex-direction: column; gap: 2.5rem; position: sticky; top: 6rem; align-self: start; }

.sidebar-widget { padding: 2rem; border: 1px solid var(--light); }
.sidebar-widget-title {
  font-size: .7rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--mid);
  margin-bottom: 1.5rem; padding-bottom: .75rem;
  border-bottom: 1px solid var(--light);
}
.sidebar-topics { display: flex; flex-wrap: wrap; gap: .4rem; }
.sidebar-topic {
  font-size: .7rem; font-weight: 500; letter-spacing: .06em;
  text-transform: uppercase; padding: .3rem .8rem;
  border: 1px solid var(--light);
  text-decoration: none; color: var(--mid); transition: all .2s;
}
.sidebar-topic:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }

.sidebar-recent { display: flex; flex-direction: column; gap: 1.25rem; }
.sidebar-recent-item {
  display: flex; gap: 1rem; align-items: flex-start;
  cursor: pointer; text-decoration: none; color: inherit;
}
.sidebar-recent-img { width: 52px; height: 52px; object-fit: cover; flex-shrink: 0; }
.sidebar-recent-title { font-size: .8rem; line-height: 1.4; font-weight: 500; transition: color .2s; }
.sidebar-recent-item:hover .sidebar-recent-title { color: var(--sage); }
.sidebar-recent-date { font-size: .65rem; color: var(--mid); margin-top: .15rem; }

.newsletter-form { display: flex; flex-direction: column; gap: .75rem; }
.newsletter-form input {
  font-family: var(--sans); font-size: .875rem;
  border: 1px solid var(--light); background: none;
  padding: .75rem 1rem; outline: none; color: var(--ink);
  transition: border-color .2s;
}
.newsletter-form input:focus { border-color: var(--sage); }
.newsletter-form input::placeholder { color: #bbb; }
.newsletter-form button {
  font-family: var(--sans); font-size: .72rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  background: var(--ink); color: var(--cream);
  border: none; padding: .8rem; cursor: pointer; transition: background .2s;
}
.newsletter-form button:hover { background: var(--sage); }

/* ── INDEX: HERO ── */
#home {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 2.5rem 4rem;
  position: relative; overflow: hidden;
}
.hero-strip {
  position: absolute; top: 0; left: 0; right: 0; height: 62%;
  display: grid; grid-template-columns: 2fr 1.2fr 1.5fr 1fr 1.8fr; gap: 4px;
}
.hero-strip-cell { overflow: hidden; position: relative; }
.hero-strip-cell img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(.85) brightness(.9);
  transition: transform .6s ease, filter .4s;
}
.hero-strip-cell:hover img { transform: scale(1.04); filter: saturate(1) brightness(1); }
.hero-strip-cell .cell-label {
  position: absolute; bottom: .75rem; left: .75rem;
  font-size: .65rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--cream);
  background: rgba(14,14,15,.45); padding: .2rem .5rem;
  backdrop-filter: blur(4px);
}
.hero-fade {
  position: absolute; top: 40%; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to bottom, transparent, var(--cream) 75%);
  pointer-events: none;
}
.hero-text { position: relative; z-index: 2; max-width: 760px; }
.hero-eyebrow {
  font-size: .75rem; font-weight: 500; letter-spacing: .15em;
  text-transform: uppercase; color: var(--sage); margin-bottom: 1rem;
}
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: 1.0; letter-spacing: -0.02em;
  color: var(--ink); margin-bottom: 1.5rem;
}
.hero-headline em { font-style: italic; color: var(--gold); }
.hero-sub {
  font-size: 1rem; color: var(--mid);
  max-width: 480px; line-height: 1.75; margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }

/* ── PHOTOS PAGE ── */
.photo-section { padding: 5rem 2.5rem; }
.photo-section + .photo-section { border-top: 1px solid var(--light); }

.photo-section-header {
  display: grid; grid-template-columns: 1fr 2fr auto;
  gap: 2rem; align-items: start; margin-bottom: 3rem;
}
.photo-section-num {
  font-family: var(--serif); font-size: 4rem; line-height: 1;
  color: var(--light); letter-spacing: -0.03em; user-select: none;
}
.photo-section-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.05; letter-spacing: -0.02em; margin-bottom: .75rem;
}
.photo-section-title em { font-style: italic; color: var(--sage); }
.photo-section-desc {
  font-size: .875rem; color: var(--mid); max-width: 480px; line-height: 1.75;
}
.photo-section-count {
  font-size: .7rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--mid); white-space: nowrap; padding-top: .5rem;
}

.photo-masonry { columns: 3 260px; gap: 6px; }
.photo-item {
  break-inside: avoid; margin-bottom: 6px;
  overflow: hidden; position: relative; cursor: pointer;
}
.photo-item img {
  width: 100%; display: block; filter: saturate(.9);
  transition: transform .5s ease, filter .3s;
}
.photo-item:hover img { transform: scale(1.03); filter: saturate(1.1); }
.photo-overlay {
  position: absolute; inset: 0;
  background: rgba(14,14,15,0);
  display: flex; align-items: flex-end;
  padding: 1rem; transition: background .3s;
}
.photo-item:hover .photo-overlay { background: rgba(14,14,15,.38); }
.photo-meta {
  opacity: 0; transform: translateY(8px);
  transition: opacity .3s, transform .3s; color: var(--cream);
}
.photo-item:hover .photo-meta { opacity: 1; transform: translateY(0); }
.photo-meta-title { font-family: var(--serif); font-size: 1rem; }
.photo-meta-loc { font-size: .7rem; letter-spacing: .08em; color: rgba(247,245,240,.7); margin-top: .15rem; }

.photo-layout-featured {
  display: grid; grid-template-columns: 1.6fr 1fr; gap: 6px; margin-bottom: 6px;
}
.photo-layout-featured .photo-item { margin-bottom: 0; }
.photo-featured-side { display: flex; flex-direction: column; gap: 6px; }

.section-jump { display: flex; flex-direction: column; gap: .5rem; align-items: flex-end; }
.jump-link {
  font-size: .72rem; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; color: var(--mid); text-decoration: none;
  border-bottom: 1px solid transparent; padding-bottom: 1px;
  transition: color .2s, border-color .2s;
}
.jump-link:hover { color: var(--ink); border-color: var(--gold); }

/* ── LIGHTBOX ── */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: rgba(14,14,15,.92); backdrop-filter: blur(8px);
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-inner { max-width: 90vw; max-height: 85vh; position: relative; }
.lightbox-inner img { max-width: 100%; max-height: 85vh; object-fit: contain; display: block; }
.lightbox-close {
  position: absolute; top: -3rem; right: 0;
  font-size: .75rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: #666; cursor: pointer;
  transition: color .2s; background: none; border: none;
}
.lightbox-close:hover { color: var(--cream); }
.lightbox-caption {
  font-family: var(--serif); font-size: 1rem; color: var(--cream);
  margin-top: 1rem; font-style: italic;
}
.lightbox-prev, .lightbox-next {
  position: fixed; top: 50%; transform: translateY(-50%);
  background: none; border: 1px solid #444; color: #888;
  width: 44px; height: 44px; font-size: 1.1rem; cursor: pointer;
  transition: border-color .2s, color .2s; z-index: 201;
}
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-prev:hover, .lightbox-next:hover { border-color: var(--gold); color: var(--gold); }

/* ── BLOG PAGE ── */
.blog-page { padding: 5rem 2.5rem; display: grid; grid-template-columns: 2fr 1fr; gap: 5rem; }

.topic-filter { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 3rem; }
.topic-btn {
  font-size: .7rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase;
  border: 1px solid var(--light); background: none; cursor: pointer;
  padding: .4rem 1rem; color: var(--mid); transition: all .2s; font-family: var(--sans);
}
.topic-btn.active, .topic-btn:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }

.blog-posts { display: flex; flex-direction: column; }

.blog-post {
  display: grid; grid-template-columns: 56px 1fr auto; gap: 1.75rem;
  padding: 2.5rem 0; border-bottom: 1px solid var(--light);
  text-decoration: none; color: inherit; align-items: start;
}
.blog-post:first-child { padding-top: 0; }
.blog-post:last-child { border-bottom: none; }

.post-date { text-align: center; padding-top: .2rem; }
.post-day { font-family: var(--serif); font-size: 2rem; line-height: 1; color: var(--gold); }
.post-month { font-size: .6rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--mid); }

.post-tag { font-size: .65rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--sage); margin-bottom: .4rem; }
.post-title {
  font-family: var(--serif); font-size: 1.4rem; line-height: 1.2;
  letter-spacing: -0.01em; margin-bottom: .6rem; transition: color .2s;
}
.blog-post:hover .post-title { color: var(--sage); }
.post-excerpt { font-size: .85rem; color: var(--mid); line-height: 1.75; margin-bottom: .85rem; }
.post-readmore {
  font-size: .7rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink); border-bottom: 1px solid var(--light); padding-bottom: 1px;
  display: inline-block; transition: color .2s, border-color .2s;
}
.blog-post:hover .post-readmore { color: var(--gold); border-color: var(--gold); }

.post-thumb {
  width: 100px; height: 80px; object-fit: cover;
  flex-shrink: 0; filter: saturate(.85); transition: filter .3s;
}
.blog-post:hover .post-thumb { filter: saturate(1); }

.archive-label {
  font-size: .7rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--mid); padding: 2rem 0 1rem; border-top: 2px solid var(--light); margin-top: 1rem;
}

/* ── ABOUT PAGE ── */
.about-hero {
  padding: 9rem 2.5rem 5rem;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: center;
  border-bottom: 1px solid var(--light);
}
.about-hero-eyebrow {
  font-size: .72rem; font-weight: 500; letter-spacing: .15em;
  text-transform: uppercase; color: var(--sage); margin-bottom: .75rem;
}
.about-hero-title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  line-height: 1.05; letter-spacing: -0.02em; margin-bottom: 1.5rem;
}
.about-hero-title em { font-style: italic; color: var(--gold); }
.about-hero-body { font-size: .95rem; color: var(--mid); line-height: 1.85; }
.about-hero-body p + p { margin-top: 1.1rem; }
.about-hero-image img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover; filter: saturate(.85);
}
.about-hero-image-caption { font-size: .68rem; color: var(--mid); letter-spacing: .06em; margin-top: .75rem; font-style: italic; }

.stats-strip {
  padding: 4rem 2.5rem;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem; border-bottom: 1px solid var(--light);
}
.stat { text-align: center; }
.stat-num { font-family: var(--serif); font-size: 3rem; line-height: 1; color: var(--ink); }
.stat-label { font-size: .7rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--mid); margin-top: .4rem; }

.content-section { padding: 5rem 2.5rem; border-bottom: 1px solid var(--light); }
.content-section:last-of-type { border-bottom: none; }

.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.story-body { font-size: .95rem; color: var(--mid); line-height: 1.9; }
.story-body p + p { margin-top: 1.25rem; }
.story-timeline { display: flex; flex-direction: column; gap: 0; }
.timeline-item {
  display: grid; grid-template-columns: 80px 1fr;
  gap: 1.5rem; padding: 1.5rem 0; border-bottom: 1px solid var(--light);
}
.timeline-item:first-child { padding-top: 0; }
.timeline-item:last-child { border-bottom: none; }
.timeline-year { font-family: var(--serif); font-size: 1.5rem; color: var(--gold); line-height: 1.1; }
.timeline-event { font-size: .875rem; color: var(--mid); line-height: 1.6; }
.timeline-event strong { display: block; color: var(--ink); font-weight: 500; margin-bottom: .2rem; font-size: .9rem; }

.gear-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.gear-cat-title {
  font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink); padding-bottom: .75rem; margin-bottom: 1rem;
  border-bottom: 2px solid var(--ink);
}
.gear-list { display: flex; flex-direction: column; gap: .85rem; }
.gear-item { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.gear-name { font-size: .875rem; color: var(--ink); line-height: 1.4; }
.gear-note { font-size: .72rem; color: var(--mid); white-space: nowrap; }
.gear-divider { height: 1px; background: var(--light); margin: .5rem 0; }

.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.process-num { font-family: var(--serif); font-size: 3rem; line-height: 1; color: var(--light); margin-bottom: .75rem; }
.process-step-title { font-size: .875rem; font-weight: 600; color: var(--ink); margin-bottom: .5rem; }
.process-step-desc { font-size: .825rem; color: var(--mid); line-height: 1.7; }

.faq-list { display: flex; flex-direction: column; max-width: 720px; }
.faq-item { border-bottom: 1px solid var(--light); }
.faq-question {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 1.5rem 0; display: flex; justify-content: space-between; align-items: center;
  font-family: var(--sans); font-size: .95rem; font-weight: 500; color: var(--ink);
  gap: 1rem; transition: color .2s;
}
.faq-question:hover { color: var(--sage); }
.faq-icon { font-size: 1.1rem; color: var(--gold); flex-shrink: 0; transition: transform .25s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  font-size: .875rem; color: var(--mid); line-height: 1.8;
  max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s;
}
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 1.5rem; }

.contact-strip {
  background: var(--ink); padding: 5rem 2.5rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.contact-title {
  font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--cream); line-height: 1.15; letter-spacing: -0.02em;
}
.contact-title em { font-style: italic; color: var(--gold); }
.contact-body { font-size: .9rem; color: #888; line-height: 1.85; }
.contact-body p + p { margin-top: 1rem; }
.contact-links { display: flex; flex-direction: column; gap: .75rem; margin-top: 1.75rem; }
.contact-link {
  font-size: .8rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase;
  color: var(--cream); text-decoration: none;
  display: flex; align-items: center; gap: .75rem; transition: color .2s;
}
.contact-link:hover { color: var(--gold); }
.contact-link-icon {
  width: 32px; height: 32px; border: 1px solid #333;
  display: flex; align-items: center; justify-content: center; font-size: .8rem;
}

/* ── MOBILE ── */
@media (max-width: 768px) {
  nav { padding: 1rem 1.25rem; }
  .nav-links { display: none; }
  section { padding: 4rem 1.25rem; }

  /* index */
  #home { padding: 0 1.25rem 3rem; }
  .hero-strip { grid-template-columns: repeat(3, 1fr); }
  .hero-strip-cell:nth-child(4), .hero-strip-cell:nth-child(5) { display: none; }
  #about { grid-template-columns: 1fr !important; gap: 2.5rem !important; }

  /* photos */
  .page-hero { padding: 7rem 1.25rem 3rem; }
  .section-jump { display: none; }
  .photo-section { padding: 3rem 1.25rem; }
  .photo-section-header { grid-template-columns: auto 1fr; }
  .photo-section-count { display: none; }
  .photo-masonry { columns: 2 140px; }
  .photo-layout-featured { grid-template-columns: 1fr; }

  /* blog */
  .blog-page { padding: 3rem 1.25rem; grid-template-columns: 1fr; }
  .blog-sidebar { display: none; }
  .blog-post { grid-template-columns: 56px 1fr; }
  .post-thumb { display: none; }

  /* about */
  .about-hero { padding: 7rem 1.25rem 4rem; grid-template-columns: 1fr; gap: 2.5rem; }
  .about-hero-image { order: -1; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); padding: 3rem 1.25rem; }
  .content-section { padding: 3rem 1.25rem; }
  .story-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .gear-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .contact-strip { grid-template-columns: 1fr; gap: 2.5rem; padding: 4rem 1.25rem; }

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

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
