/* Site-specific extensions on top of the design system kit.css
   ----------------------------------------------------------------------------
   Layout rules of the road:
     · Side padding is always var(--gutter); vertical rhythm var(--sect-y).
     · Anything that has to reshape per breakpoint lives in a class, never an
       inline style — inline styles beat media queries and can't be undone.
     · Grid collapses are collected in the BREAKPOINTS section at the bottom so
       the whole responsive story can be read in one place.
   -------------------------------------------------------------------------- */

html, body { margin: 0; padding: 0; }
body { background: var(--cream); }

/* Intro paragraph under a page title. Was an inline fontSize:16 on six pages,
   which no media query could reach — hence the class. */
.page-lede { font-size: clamp(14px, 1.4vw, 16px); line-height: 1.85; }
.page-lede--center { margin-inline: auto; }

/* Centered content column used by nearly every section.
   The +2×gutter is deliberate: with border-box, an element carrying BOTH the
   max-width and the padding would end up --maxw *including* its gutters, i.e.
   96px narrower than a section that puts the padding on an outer wrapper.
   Adding the gutters back makes every content column land on the same edge —
   which is also the edge the nav aligns itself to (see .kit-nav in kit.css). */
.wrap {
  max-width: calc(var(--maxw) + 2 * var(--gutter));
  margin: 0 auto; padding-inline: var(--gutter);
}
.wrap--text { max-width: calc(var(--maxw-text) + 2 * var(--gutter)); }

/* Section header: eyebrow + headline on the left, a ghost link on the right */
.section-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 24px; margin-bottom: clamp(36px, 5vw, 72px);
}

/* Smooth page transitions */
.page-fade { animation: pageFade 360ms cubic-bezier(0.22, 0.61, 0.36, 1); }
@keyframes pageFade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Page header (used on every non-home page) */
.page-header {
  padding: clamp(48px, 8vw, 96px) var(--gutter) clamp(36px, 5vw, 64px);
  text-align: center;
  position: relative;
}
.page-header__inner { max-width: 920px; margin: 0 auto; }
.page-header h1 { margin: 0 0 28px; }
/* Wide variant: the page title is meant to run as a single line and use the
   full width rather than stacking. The lede keeps the narrower measure so the
   paragraph underneath stays readable. */
.page-header--wide .page-header__inner { max-width: 1240px; }
.page-header--wide .page-lede { max-width: 62ch; }

/* Headlines written without a <br> that should hold one line on a desktop.
   nowrap only above 900px — below that they must wrap, and forcing one line
   would push the page sideways. */
@media (min-width: 901px) {
  .headline-oneline { text-wrap: nowrap; white-space: nowrap; }
}

/* Full-bleed hero variant */
.hero-bleed {
  position: relative;
  /* Slide up underneath the (transparent) sticky nav so the photo fills the
     whole first viewport. --nav-h tracks the nav's real height per breakpoint. */
  margin-top: calc(-1 * var(--nav-h));
  height: 100vh;
  height: 100svh;
  /* min() so a short landscape phone doesn't get a hero taller than its screen */
  min-height: min(560px, 100svh);
  overflow: hidden;
  background: var(--green);
  touch-action: pan-y;
}
.hero-bleed__img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 40%;
}

/* Carousel arrows — minimal carets, cream over the photo */
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 3;
  width: 48px; height: 72px; padding: 0;
  display: flex; align-items: center; justify-content: center;
  background: transparent; border: none; cursor: pointer;
  color: var(--cream); opacity: 0.55;
  transition: opacity 240ms var(--ease-soft);
  -webkit-tap-highlight-color: transparent;
}
.hero-arrow:hover { opacity: 1; }
.hero-arrow svg { width: 30px; height: 30px; display: block; }
.hero-arrow--left { left: 18px; }
.hero-arrow--right { right: 18px; }
.hero-bleed::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(40,42,30,0.28) 0%, transparent 26%, transparent 52%, rgba(40,42,30,0.52) 100%),
    radial-gradient(120% 70% at 30% 105%, rgba(40,42,30,0.45), transparent 60%);
  pointer-events: none;
}

/* Welcome block */
.welcome {
  padding: var(--sect-y) var(--gutter) clamp(56px, 9vw, 128px);
  text-align: center;
  position: relative;
}
.welcome__inner { max-width: 760px; margin: 0 auto; }
.welcome__inner--wide { max-width: 1160px; }
.welcome__inner--wide .page-lede { max-width: 62ch; }
.welcome__sig {
  font-family: var(--font-display); font-style: italic; font-weight: 300;
  font-size: clamp(20px, 3vw, 28px); color: var(--clay); margin-top: 40px;
}

/* Meet preview (home) */
.meet { padding: 0 var(--gutter) var(--sect-y); }
.meet__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 96px); align-items: center;
}
.meet__figure { position: relative; }
/* Symbol stamp tucked over the photo's top-right corner */
.meet__stamp {
  position: absolute; top: -28px; right: -28px;
  width: clamp(56px, 8vw, 96px); z-index: 2;
}

/* Selected work (home) — editorial 12-column mosaic.
   Each article carries its own --span / --h so the breakpoints below can
   re-shape the mosaic without touching the JSX. */
.featured { padding: 0 var(--gutter) var(--sect-y); }
.featured__grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(12px, 1.6vw, 20px); }
.featured__item { grid-column: var(--span); cursor: pointer; }
.featured__photo { height: var(--h); }
.featured__cap { padding-top: 20px; display: flex; align-items: baseline; gap: 14px; }
.featured__title {
  font-family: var(--font-display); font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 400; margin: 0; line-height: 1.1;
}

/* Testimonial band (home) */
.quote-band { position: relative; overflow: hidden; padding: clamp(56px, 8vw, 72px) 0; }
.quote-band__pattern {
  position: absolute; inset: 0;
  background: url('../assets/ahp-logo/Pattern-green.png') 0 0 / 480px auto;
  opacity: 0.08; mix-blend-mode: screen;
}
.quote-band__inner {
  position: relative; max-width: 960px; margin: 0 auto;
  padding: 0 var(--gutter); text-align: center;
}
.quote-band__mark { height: clamp(36px, 5vw, 48px); margin: 0 auto 24px; opacity: 0.9; }
.quote-band__text {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(19px, 3.2vw, 40px); font-weight: 300; line-height: 1.3;
  margin: 0; color: var(--cream); text-wrap: balance;
}
/* A full paragraph rather than a one-liner, so it steps down a size and takes a
   slightly tighter measure — at the display size it would otherwise run to a
   wall of 40px italic. */
.quote-band__text--long {
  font-size: clamp(17px, 2.2vw, 27px); line-height: 1.5;
  max-width: 46ch; margin-inline: auto;
  text-wrap: pretty;   /* keeps "day!" from being stranded on a line of its own */
}

.quote-band__attr {
  font-family: var(--font-sans); font-size: 11px;
  letter-spacing: 0.32em; text-transform: uppercase; color: var(--rose);
}

/* Category grid (portfolio) */
.cat-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: clamp(44px, 6vw, 80px) clamp(20px, 4vw, 56px);
  max-width: calc(var(--maxw) + 2 * var(--gutter));   /* see .wrap */
  margin: 0 auto; padding: 0 var(--gutter) var(--sect-y);
}
.cat-card { display: block; cursor: pointer; text-decoration: none; color: var(--green); }
.cat-card__photo { aspect-ratio: 4/5; box-shadow: var(--shadow-photo); position: relative; overflow: hidden; }
.cat-card__photo::before {
  content: ""; position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(180deg, transparent 50%, rgba(52,53,22,0.45));
  transition: opacity 360ms var(--ease-soft);
}
.cat-card:hover .cat-card__photo::before { opacity: 0.7; }
.cat-card__caption { padding-top: 24px; display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 16px; }
.cat-card__title { font-family: var(--font-display); font-size: clamp(26px, 4vw, 56px); font-weight: 400; line-height: 1; margin: 0; }
.cat-card__title em { font-style: italic; color: var(--clay); }
.cat-card__meta { font-family: var(--font-sans); font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--fg-muted); display: flex; align-items: center; gap: 14px; white-space: nowrap; }
.cat-card__meta::before { content: ""; width: 28px; height: 1px; background: currentColor; }

/* Recent-work thumbnail river (portfolio) */
.strip { background: #FAF6EE; padding: var(--sect-y) 0; }
.strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 2vw, 28px) clamp(10px, 1.4vw, 16px); }
.strip__tile { margin: 0; }
.strip__name {
  padding-top: 12px;
  font-family: var(--font-display); font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 400; line-height: 1.25; color: var(--green);
}

/* About — intro split */
.about-intro {
  padding: clamp(32px, 5vw, 48px) var(--gutter);
  min-height: calc(100svh - var(--nav-h));
  display: flex; align-items: center;
}
.about-intro__inner {
  width: 100%; max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(40px, 6vw, 96px); align-items: center;
}
.about-intro__figure { position: relative; }
.about-intro__title { margin: 32px 0 24px; font-size: clamp(35px, 6.5vw, 92px); }
/* Snapshots pinned to opposite corners of the portrait: Sebastian lower-left,
   the two of them upper-right, each tilted the other way so they read as a pair
   rather than a repeat. */
.about-polaroid {
  position: absolute; z-index: 2;
  width: clamp(96px, 13vw, 140px);
  padding: clamp(10px, 1.4vw, 18px);
  background: var(--cream); box-shadow: var(--shadow-photo);
}
.about-polaroid--bl { bottom: -32px; left: -32px; transform: rotate(-4deg); }
.about-polaroid--tr { top: -32px; right: -32px; transform: rotate(3.5deg); }
.about-polaroid__cap {
  font-family: var(--font-display); font-style: italic;
  font-size: 12px; text-align: center; margin-top: 6px; color: var(--clay);
}

/* About — the longer story, on green */
.about-story {
  background: var(--green); color: var(--cream);
  padding: var(--sect-y) var(--gutter);
  position: relative; overflow: hidden;
}
.about-story__pattern {
  position: absolute; inset: 0;
  background: url('../assets/ahp-logo/Pattern-green.png') 0 0 / 460px auto;
  opacity: 0.07; mix-blend-mode: screen;
}
.about-story__inner {
  position: relative; max-width: var(--maxw-text); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: clamp(36px, 6vw, 96px); align-items: start;
}
.about-story__prose { display: flex; flex-direction: column; gap: 22px; }
.about-story__prose p {
  font-family: var(--font-sans); font-size: 15px; line-height: 1.85;
  letter-spacing: 0.04em; color: rgba(255,252,247,0.86); margin: 0;
}
/* Compound selector so it outranks the `.about-story__prose p` rule above */
.about-story__prose p.about-story__pull {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(22px, 3vw, 28px); line-height: 1.3; letter-spacing: 0;
  color: var(--rose); margin: 24px 0 0; max-width: 32ch;
}

/* Values list (about) */
.values { padding: var(--sect-y) var(--gutter); background: #FAF6EE; }
.values__inner { max-width: var(--maxw); margin: 0 auto; }
.values__top { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(32px, 6vw, 96px); margin-bottom: clamp(48px, 6vw, 80px); align-items: end; }
.values__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--hairline-soft); border-top: 1px solid var(--green); border-bottom: 1px solid var(--green); }
.value {
  background: #FAF6EE;
  padding: clamp(28px, 4vw, 48px) clamp(24px, 3vw, 40px);
}
.value__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(22px, 2.4vw, 28px); line-height: 1.1; margin: 0 0 12px;
}
.value__title em { font-style: italic; color: var(--clay); }
.value__body { font-family: var(--font-sans); font-size: 14px; letter-spacing: 0.04em; line-height: 1.7; color: var(--fg-muted); margin: 0; }

/* About — studio notes */
.gear { padding: var(--sect-y) var(--gutter); border-top: 1px solid var(--hairline-soft); }
.gear__inner { max-width: 1180px; margin: 0 auto; }
.gear__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(32px, 4.5vw, 56px); }
.gear__label {
  font-family: var(--font-sans); font-size: 10px; font-weight: 600;
  letter-spacing: 0.32em; text-transform: uppercase; color: var(--clay); margin-bottom: 24px;
}
.gear__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.gear__list li {
  font-family: var(--font-display); font-size: clamp(18px, 2vw, 22px);
  font-weight: 400; line-height: 1.3; color: var(--green);
}

/* Investment / experience */
.exp {
  padding: clamp(56px, 8vw, 80px) var(--gutter);
  background: var(--green); color: var(--cream);
}
.exp .kit-eyebrow { color: var(--rose); }
.exp .kit-eyebrow::before, .exp .kit-eyebrow::after { background: currentColor; }
.exp .kit-headline { color: var(--cream); }
.exp .kit-headline em { color: var(--rose); }
.exp__inner { max-width: 1240px; margin: 0 auto; }
.exp__timeline {
  display: grid; grid-template-columns: 1fr; gap: 0;
  border-top: 1px solid rgba(255,252,247,0.22);
}
.exp__step {
  display: grid; grid-template-columns: 1fr 1.8fr;
  gap: clamp(8px, 3vw, 40px); padding: 22px 0;
  border-bottom: 1px solid rgba(255,252,247,0.18);
  align-items: center;
}
.exp__title { font-family: var(--font-display); font-size: clamp(21px, 2.4vw, 26px); font-weight: 400; margin: 0; line-height: 1.05; color: var(--cream); }
.exp__title em { font-style: italic; color: var(--rose); }
.exp__body { font-family: var(--font-sans); font-size: 14px; letter-spacing: 0.04em; line-height: 1.6; color: rgba(255,252,247,0.80); margin: 0; max-width: 78ch; }

/* Pricing collections */
.collections { padding: clamp(40px, 6vw, 64px) var(--gutter) var(--sect-y); }
.collection {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border-top: 1px solid var(--green); border-bottom: 1px solid var(--green);
  margin-top: 48px;
}
.collection__col {
  padding: clamp(32px, 4vw, 56px) clamp(24px, 3vw, 40px);
  border-right: 1px solid var(--hairline-soft);
  display: flex; flex-direction: column; gap: 24px;
}
.collection__col:last-child { border-right: none; }
.collection__col--featured { background: #FAF6EE; }

/* Single-offering variant: one wide panel instead of a row of packages. */
.collection--single {
  /* Runs the full content measure — capped narrow it read as a small card
     marooned in the middle of the page. The bullets split into two columns, so
     no single line of text gets uncomfortably long at this width. */
  grid-template-columns: 1fr;
}
.collection--single .collection__col { padding-inline: clamp(28px, 5vw, 72px); }
/* Name and price sit against the bullet columns rather than above them */
.collection--single .collection__body {
  display: grid; grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 64px); align-items: start;
}
.collection--single .collection__intro { display: flex; flex-direction: column; gap: 20px; }
.collection--single .collection__col { border-right: none; }
/* One column now that the list occupies the panel's right half — two columns
   left the right side far shorter than the left and the panel looked bottom-heavy. */
.collection--single .collection__list {
  display: grid; grid-template-columns: 1fr;
  gap: 16px;
}
.collection__head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; }
.collection__badge {
  font-family: var(--font-sans); font-size: 10px; font-weight: 600;
  letter-spacing: 0.32em; text-transform: uppercase; color: var(--clay); margin-bottom: 10px;
}
.collection__name { font-family: var(--font-display); font-size: clamp(28px, 3.4vw, 40px); font-weight: 400; margin: 0; line-height: 1; }
.collection__name em { font-style: italic; color: var(--clay); }
.collection__price { font-family: var(--font-sans); font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--fg-muted); margin-top: 12px; }
.collection__blurb { font-family: var(--font-sans); font-size: 13px; line-height: 1.7; color: var(--fg-muted); margin: 0; }
.collection__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.collection__list li {
  font-family: var(--font-sans); font-size: 13px; letter-spacing: 0.04em; line-height: 1.6;
  padding-left: 22px; position: relative; color: var(--green);
}
.collection__list li::before {
  content: "·"; position: absolute; left: 0; top: -4px;
  font-family: var(--font-display); font-style: italic;
  color: var(--clay); font-size: 22px;
}
/* Session pricing disclosure. The trigger is typographically identical to the
   note that used to sit here, so it does not read as a second offer competing
   with the wedding collection above it. */
.sessions { margin: clamp(40px, 5vw, 64px) auto 0; max-width: 62ch; text-align: center; }
.sessions__toggle {
  display: inline-flex; align-items: baseline; gap: 12px;
  background: transparent; border: none; cursor: pointer;
  padding: 8px 0; margin: 0 auto;
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(18px, 2.2vw, 22px); line-height: 1.5;
  color: var(--fg-muted);
  border-bottom: 1px solid transparent;
  transition: color 240ms var(--ease-soft), border-color 240ms var(--ease-soft);
}
.sessions__toggle:hover { color: var(--green); border-bottom-color: var(--hairline); }
.sessions__mark {
  font-family: var(--font-sans); font-style: normal; font-size: 18px;
  color: var(--clay); transition: transform 280ms var(--ease-soft);
  display: inline-block;
}
.sessions__toggle[aria-expanded="true"] .sessions__mark { transform: rotate(45deg); }
.sessions__panel {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows 380ms var(--ease-soft);
  text-align: left;
}
.sessions__panel.is-open { grid-template-rows: 1fr; }
/* visibility, not just clipping: a collapsed panel is still in the
   accessibility tree and still turns up in find-in-page, so a screen reader
   would read out session pricing that nobody can see. */
.sessions__inner {
  overflow: hidden; min-height: 0;
  visibility: hidden;
  transition: visibility 0s linear 380ms;
}
.sessions__panel.is-open .sessions__inner {
  visibility: visible;
  transition: visibility 0s linear 0s;
}
.sessions__card {
  margin-top: 24px; padding: clamp(24px, 3.5vw, 36px);
  background: #FAF6EE; border-top: 1px solid var(--green); border-bottom: 1px solid var(--green);
  display: flex; flex-direction: column; gap: 18px; align-items: flex-start;
}
.sessions__name {
  font-family: var(--font-display); font-size: clamp(24px, 2.6vw, 30px);
  font-weight: 400; margin: 0; line-height: 1.05;
}
.sessions__name em { font-style: italic; color: var(--clay); }
.sessions__price {
  font-family: var(--font-sans); font-size: 11px; letter-spacing: 0.32em;
  text-transform: uppercase; color: var(--fg-muted); margin-top: 10px;
}
.sessions__blurb {
  font-family: var(--font-sans); font-size: 13px; line-height: 1.7;
  color: var(--fg-muted); margin: 0; max-width: 62ch;
}

.collections__note {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(18px, 2.2vw, 22px); color: var(--fg-muted);
  margin: clamp(40px, 5vw, 64px) auto 0; max-width: 60ch; text-align: center;
}

/* FAQ */
.faq { padding: var(--sect-y) var(--gutter); background: #FAF6EE; color: var(--green); position: relative; overflow: hidden; }
.faq__inner { position: relative; max-width: var(--maxw-text); margin: 0 auto; }
.faq__top { text-align: center; margin-bottom: clamp(40px, 5vw, 72px); }
.faq__top h2 { color: var(--green); }
.faq__top h2 em { color: var(--clay); }
.faq__list { border-top: 1px solid var(--hairline-soft); }
.faq__item { border-bottom: 1px solid var(--hairline-soft); padding: 24px 0; cursor: pointer; }
.faq__item-head { display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: center; }
.faq__q { font-family: var(--font-display); font-size: clamp(20px, 2.2vw, 28px); font-weight: 400; margin: 0; color: var(--green); }
.faq__q em { font-style: italic; color: var(--clay); }
.faq__toggle { font-family: var(--font-sans); font-size: 22px; color: var(--clay); width: 28px; text-align: center; transition: transform 280ms var(--ease-soft); }
.faq__item--open .faq__toggle { transform: rotate(45deg); }
/* 0fr → 1fr expands to the answer's natural height, so long answers are never
   clipped the way a fixed max-height would clip them on a narrow screen. */
.faq__a {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows 360ms var(--ease-soft);
}
.faq__item--open .faq__a { grid-template-rows: 1fr; }
/* Padding lives on the inner <p>, not the clipped wrapper, so a collapsed
   answer really is zero pixels tall. */
.faq__a-inner { overflow: hidden; min-height: 0; }
.faq__a-inner p {
  margin: 0; padding: 18px 0 12px;
  font-family: var(--font-sans); font-size: 14px; line-height: 1.75;
  color: var(--fg-muted); max-width: 64ch;
}

/* Journal list page */
.journal-feature {
  padding: 32px var(--gutter) clamp(56px, 7vw, 80px);
  max-width: calc(var(--maxw) + 2 * var(--gutter));   /* see .wrap */
  margin: 0 auto;
}
.journal-feature__inner {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: clamp(32px, 5vw, 72px); align-items: center;
}
.journal-feature__meta { font-family: var(--font-sans); font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--clay); display: flex; align-items: center; gap: 14px; }
.journal-feature__meta::before { content: ""; width: 36px; height: 1px; background: currentColor; }
.journal-feature__title { font-family: var(--font-display); font-size: clamp(27px, 4.5vw, 64px); font-weight: 400; line-height: 1.05; margin: 24px 0; }
.journal-feature__title em { font-style: italic; color: var(--clay); }
.journal-feature__dek { font-family: var(--font-sans); font-size: 15px; line-height: 1.8; letter-spacing: 0.04em; color: var(--fg-muted); max-width: 52ch; margin: 0 0 28px; }

.journal-list {
  padding: clamp(40px, 6vw, 64px) var(--gutter) var(--sect-y);
  max-width: calc(var(--maxw) + 2 * var(--gutter));   /* see .wrap */
  margin: 0 auto;
}
.journal-list__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 16px; margin-bottom: 24px; }
.journal-list__count { font-family: var(--font-sans); font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--fg-muted); white-space: nowrap; }
.journal-list__filters {
  display: flex; flex-wrap: wrap; gap: 12px clamp(18px, 3vw, 32px);
  padding-bottom: 24px;
  border-bottom: 1px solid var(--hairline-soft);
  margin-bottom: clamp(36px, 5vw, 56px);
}
.journal-list__filter {
  font-family: var(--font-sans); font-size: 11px; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--fg-muted); cursor: pointer; background: transparent; border: none; padding: 8px 0;
  transition: color 240ms var(--ease-soft);
  position: relative;
}
.journal-list__filter:hover { color: var(--green); }
.journal-list__filter.is-active { color: var(--green); }
.journal-list__filter.is-active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 1px; background: var(--clay); }
.journal-list__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(36px, 4vw, 56px) clamp(20px, 3vw, 40px);
}
.journal-card { display: flex; flex-direction: column; cursor: pointer; }
.journal-card__meta { margin-top: 24px; font-family: var(--font-sans); font-size: 10px; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase; color: var(--clay); }
.journal-card__title { font-family: var(--font-display); font-size: clamp(21px, 2.4vw, 28px); line-height: 1.15; font-weight: 400; margin: 14px 0 20px; text-wrap: balance; }
.journal-card__foot { display: flex; flex-wrap: wrap; gap: 8px 14px; font-family: var(--font-sans); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--fg-muted); margin-top: auto; }

/* Journal entry page — a short note, then the photographs */
.journal-post__meta {
  font-family: var(--font-sans); font-size: 11px; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--fg-muted); margin: 0;
}
.journal-post__note {
  max-width: 60ch; margin: 0 auto;
  padding: clamp(8px, 2vw, 16px) var(--gutter) clamp(32px, 5vw, 48px);
  text-align: center;
  display: flex; flex-direction: column; gap: 20px;
}
.journal-post__note .kit-rule { margin: 0 auto 12px; }
.journal-post__foot {
  padding: clamp(24px, 4vw, 40px) var(--gutter) var(--sect-y);
  max-width: calc(var(--maxw) + 2 * var(--gutter)); margin: 0 auto;
}

.entry { padding: 0 var(--gutter) var(--sect-y); }
.entry__cover { max-width: var(--maxw-text); margin: 0 auto; }
.entry__body {
  max-width: 720px; margin: clamp(40px, 6vw, 72px) auto 0;
  display: flex; flex-direction: column; gap: 28px;
}
.entry__body p.entry__p {
  font-family: var(--font-sans); font-size: clamp(15px, 1.4vw, 16px); line-height: 1.9;
  letter-spacing: 0.02em; color: var(--fg-muted); margin: 0;
}
.entry__pull {
  font-family: var(--font-display); font-style: italic; font-weight: 300;
  font-size: clamp(22px, 3vw, 28px); line-height: 1.4; color: var(--clay);
  margin: 16px 0; max-width: 30ch;
}
.entry__pair { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(12px, 2vw, 20px); margin: 12px 0; }
.entry__sig {
  font-family: var(--font-display); font-style: italic; font-weight: 300;
  font-size: clamp(22px, 2.6vw, 26px); color: var(--clay); margin-top: 8px;
}
.entry__back { margin-top: 24px; padding-top: 32px; border-top: 1px solid var(--hairline-soft); }

/* Gallery detail page */
.gallery-section { padding: 8px var(--gutter) var(--sect-y); }
.gallery-section__inner { max-width: var(--maxw); margin: 0 auto; }
.gallery-section__bar {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px 24px; margin-bottom: clamp(24px, 3vw, 36px);
}
/* Placeholder editorial frames, same --span/--h contract as .featured__item */
.frames { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(12px, 1.6vw, 20px); }
.frames__item { grid-column: var(--span); }
.frames__item .kit-photo { height: var(--h); }

/* Contact */
.contact-warm {
  padding: 32px var(--gutter) 0;
  text-align: center;
  max-width: 760px; margin: 0 auto;
}
.contact-warm__sig {
  font-family: var(--font-display); font-style: italic; font-weight: 300;
  font-size: clamp(20px, 3vw, 28px); color: var(--clay); margin-top: 24px;
}

.inquire { padding: clamp(40px, 6vw, 64px) var(--gutter) var(--sect-y); }
.inquire__inner {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 7vw, 112px); align-items: start;
}
/* Photo + studio details ride along while the form scrolls */
.inquire__aside { position: sticky; top: calc(var(--nav-h) + 16px); }
.inquire__email {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(21px, 2.6vw, 28px); margin: 20px 0 8px;
  color: var(--green); line-height: 1.2; word-break: break-word;
}
/* Without this the mailto renders in the browser's default blue underline.
   No rule at rest — the underline only appears on hover, the same affordance
   the ghost buttons and nav links use. */
.inquire__email a {
  color: inherit; text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 240ms var(--ease-soft), border-color 240ms var(--ease-soft);
}
.inquire__email a:hover { color: var(--clay); border-bottom-color: var(--clay); }
.inquire__where {
  font-family: var(--font-sans); font-size: 12px;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--fg-muted); margin: 0;
}
.inquire__note {
  font-family: var(--font-sans); font-size: 13px; line-height: 1.85;
  color: var(--fg-muted); max-width: 36ch;
}
.inquire__form { display: grid; grid-template-columns: 1fr 1fr; gap: 32px 28px; }
.form-field--wide { grid-column: 1 / -1; }
.form-label {
  font-family: var(--font-sans); font-size: 10px; font-weight: 600;
  letter-spacing: 0.32em; text-transform: uppercase; color: var(--fg-muted);
  display: block; margin-bottom: 12px;
}
.form-input {
  font-family: var(--font-sans); font-size: 14px; font-weight: 500; letter-spacing: 0.06em;
  background: transparent; border: none; border-bottom: 1px solid var(--green);
  padding: 14px 0; color: var(--green); border-radius: 0; outline: none; width: 100%;
  color-scheme: light;
}
.form-input:focus { border-bottom-color: var(--clay); }
textarea.form-input { resize: vertical; min-height: 132px; padding-top: 14px; line-height: 1.7; }
.form-fine {
  font-family: var(--font-sans); font-size: 10px; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--fg-muted); margin-top: 24px;
}
.inquire__sig {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(20px, 2.4vw, 22px); margin-top: 28px; color: var(--clay);
}

.contact-strip {
  background: var(--green); color: var(--cream);
  padding: clamp(48px, 6vw, 64px) var(--gutter);
}
.contact-strip__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(32px, 5vw, 64px);
}
.contact-strip__col h6 {
  font-family: var(--font-sans); font-size: 10px; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--rose); margin: 0 0 18px;
}
.contact-strip__col p {
  font-family: var(--font-display); font-style: italic; font-size: 22px;
  line-height: 1.4; margin: 0; color: var(--cream);
}
.contact-strip__col span {
  display: block; margin-top: 8px;
  font-family: var(--font-sans); font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(255,252,247,0.7);
}

/* Bottom CTA — appears on most pages */
.cta-band {
  padding: clamp(48px, 7vw, 64px) var(--gutter);
  background: #FAF6EE;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-band__inner { max-width: 820px; margin: 0 auto; position: relative; z-index: 2; }
.cta-band__mark { width: clamp(40px, 6vw, 52px); opacity: 0.85; margin: 0 auto 18px; }
.cta-band__pattern {
  position: absolute; inset: 0; background: url('../assets/ahp-logo/Pattern-rose.png') 0 0 / 540px auto;
  opacity: 0.18; pointer-events: none;
}
.cta-band__actions { display: flex; gap: 16px; justify-content: center; align-items: center; flex-wrap: wrap; }

/* Gallery masonry — natural-aspect photos in row-major columns.
   Column count is set in JS (GalleryPage) so DOM order stays top-to-bottom. */
.gallery-cols { display: flex; gap: clamp(10px, 1.6vw, 20px); align-items: flex-start; }
.gallery-col { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: clamp(10px, 1.6vw, 20px); }
.gallery-cols__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
  box-shadow: var(--shadow-photo);
}

/* Real image inside a Photo frame */
.kit-photo__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 1;
}
.kit-photo--has-img .kit-photo__cap { z-index: 2; }

/* In-text emphasis */
em.clay { font-style: italic; color: var(--clay); }

/* Hero carousel crossfade (opacity) + photo filter easing. */
.kit-photo__img, .hero-bleed__img { transition: filter 480ms var(--ease-soft), opacity 1400ms var(--ease-soft); }


/* ========================================================================
   BREAKPOINTS
   Fluid clamps above handle spacing and type; these handle the grid
   collapses — the points where a multi-column layout stops working.
     1180px  12-col mosaics tighten
     1024px  nav becomes a drawer; wide splits go 2-up
     820px   two-column splits stack
     560px   everything is a single column
   ======================================================================== */

/* --- Large desktop ------------------------------------------------------- */
/* On a 27"+ display the 1320px measure leaves a lot of empty cream. Let the
   content column grow a little rather than stranding it in the middle. */
@media (min-width: 1800px) {
  :root { --maxw: 1560px; --maxw-text: 1200px; }
}

/* --- Small laptop -------------------------------------------------------- */
@media (max-width: 1180px) {
  /* Half-width mosaic tiles get too short to read; even out their heights */
  .featured__photo { height: clamp(340px, 42vw, var(--h)); }
  .frames__item .kit-photo { height: clamp(300px, 38vw, var(--h)); }
}

/* --- Landscape tablet ---------------------------------------------------- */
@media (max-width: 1024px) {
  .journal-list__grid { grid-template-columns: repeat(2, 1fr); }
  .values__top { grid-template-columns: 1fr; gap: 24px; align-items: start; }
  .about-story__inner { grid-template-columns: 1fr; }
  .gear__grid { grid-template-columns: repeat(3, 1fr); gap: 32px; }
  /* Sticky aside has nowhere to stick once the form is this tall */
  .inquire__inner { grid-template-columns: 1fr 1.3fr; gap: 48px; }
}

/* --- Portrait tablet ----------------------------------------------------- */
@media (max-width: 900px) {
  .meet__inner { grid-template-columns: 1fr; gap: 40px; }
  .meet__figure { max-width: 520px; }
  .meet__stamp { top: -18px; right: -14px; }
  .journal-feature__inner { grid-template-columns: 1fr; }
  .about-intro { min-height: 0; }
  .about-intro__inner { grid-template-columns: 1fr; gap: 56px; }
  .about-intro__figure { max-width: 480px; margin-left: 32px; margin-right: 32px; }
  .collection { grid-template-columns: 1fr; }
  .collection--single .collection__body { grid-template-columns: 1fr; gap: 28px; }
  .collection--single .collection__body { grid-template-columns: 1fr; }
  .collection--single .collection__list { grid-template-columns: 1fr; }
  .collection__col { border-right: none; border-bottom: 1px solid var(--hairline-soft); }
  .collection__col:last-child { border-bottom: none; }
  .strip__grid { grid-template-columns: repeat(3, 1fr); }
  .gear__grid { grid-template-columns: repeat(2, 1fr); }
  /* 12-col mosaics become a simple 2-up so nothing lands 2 columns wide */
  .featured__item, .frames__item { grid-column: span 6; }
  .featured__photo, .frames__item .kit-photo { height: auto; aspect-ratio: 4/5; }
  .inquire__inner { grid-template-columns: 1fr; gap: 56px; }
  .inquire__aside { position: static; max-width: 480px; }
  .inquire__note { max-width: none; }
  /* Two cards across leaves the title too narrow to sit beside "View Gallery" */
  .cat-card__caption { grid-template-columns: 1fr; gap: 10px; }
}

/* Tap-to-expand rows (phone only — see Disclosure in shared.jsx). Same
   0fr → 1fr mechanism as the FAQ, so any length of body opens cleanly. */
.m-collapse { cursor: pointer; }
.m-collapse__head {
  display: grid; grid-template-columns: 1fr auto;
  gap: 14px; align-items: center;
}
.m-collapse__head:has(.m-collapse__lead) { grid-template-columns: auto 1fr auto; }
.m-collapse__lead {
  font-family: var(--font-sans); font-size: 10px; font-weight: 600;
  letter-spacing: 0.24em; color: var(--clay); opacity: 0.85;
}
.m-collapse__toggle {
  font-family: var(--font-sans); font-size: 20px; line-height: 1;
  color: var(--clay); width: 20px; text-align: center;
  transition: transform 280ms var(--ease-soft);
}
.m-collapse.is-open .m-collapse__toggle { transform: rotate(45deg); }
.m-collapse__body {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows 340ms var(--ease-soft);
}
.m-collapse.is-open .m-collapse__body { grid-template-rows: 1fr; }
.m-collapse__body > div { overflow: hidden; min-height: 0; }
.m-collapse__body p { margin-top: 12px; }

/* --- Phone --------------------------------------------------------------- */
@media (max-width: 640px) {
  /* Collapsed, the six promises and the six experience steps read as a short
     index rather than running two-and-a-half screens each. */
  .value { padding: 18px clamp(18px, 4vw, 24px); }
  .value .m-collapse__toggle { color: var(--clay); }
  .exp__step { padding: 16px 0; }
  .exp__step .m-collapse__lead { color: var(--rose); }
  .exp__step .m-collapse__toggle { color: var(--rose); }
  .exp__body { padding-right: 8px; }
  .cat-grid { grid-template-columns: 1fr; }
  .values__grid { grid-template-columns: 1fr; }
  .journal-list__grid { grid-template-columns: 1fr; }
  .journal-list__head { flex-direction: column; align-items: flex-start; gap: 8px; }
  .strip__grid { grid-template-columns: repeat(2, 1fr); }
  .gear__grid { grid-template-columns: 1fr; gap: 36px; }
  .contact-strip__inner { grid-template-columns: 1fr; }
  .exp__step { grid-template-columns: 1fr; gap: 10px; align-items: start; }
  .entry__pair { grid-template-columns: 1fr; }
  /* Room on both sides now that a snapshot hangs off each corner */
  .about-intro__figure { margin-left: 22px; margin-right: 22px; }
  .about-polaroid--bl { bottom: -22px; left: -22px; }
  .about-polaroid--tr { top: -22px; right: -22px; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 20px; }
  .featured__item, .frames__item { grid-column: 1 / -1; }
  /* One column of form fields; 16px inputs so iOS Safari doesn't zoom on focus */
  .inquire__form { grid-template-columns: 1fr; gap: 28px; }
  .form-input { font-size: 16px; }
  .cta-band__actions { flex-direction: column; }
  /* Arrows tuck in and get a full-height tap strip on either edge */
  .hero-arrow { width: 44px; height: 88px; opacity: 0.7; }
  .hero-arrow--left { left: 2px; }
  .hero-arrow--right { right: 2px; }
  .hero-arrow svg { width: 24px; height: 24px; }
}

/* --- Reduced motion ------------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  .page-fade { animation: none; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0s !important;
  }
}

/* Honeypot — hidden without display:none, which some bots skip. Clipped rather
   than pushed to left:-9999px, which would extend the page's scrollable area
   and shows up as horizontal overflow. */
.form-hp {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; border: 0;
  overflow: hidden; white-space: nowrap;
  clip-path: inset(50%); pointer-events: none;
}
/* Submission failure, shown in place above the reassurance line. */
.form-error {
  font-family: var(--font-sans); font-size: 13px; line-height: 1.6;
  color: var(--clay); margin: 16px 0 0; max-width: 52ch;
}
.kit-btn[disabled] { opacity: 0.55; cursor: default; pointer-events: none; }
