/* Pohl Custom Cabinets - homepage concept
   Design language: Heritage Craft (type, spacing, composition, motion only)
   Palette: Pohl's own brand colors, sampled from their logo plaque, their nav bar
   and their live CTA button. No stock palette. */

:root {
  /* Dark family - deepened from their nav bar #241d13 */
  --ink:          #16110a;
  --espresso:     #241d13;
  --espresso-2:   #2f2617;

  /* Light family - warm neutrals from their wood-grain header band */
  --parchment:    #f4efe6;
  --wheat:        #e6ddcc;
  --driftwood:    #918b7b;

  /* Accents - straight from their logo plaque and CTA button */
  --oxblood:      #90181e;
  --oxblood-btn:  #86262a;
  --oxblood-deep: #6f1418;
  --brass:        #bf9c61;
  --brass-soft:   rgba(191,156,97,0.28);

  /* Text */
  --text-dark:        #241d13;
  --text-body:        #4d4437;
  --text-muted:       #6b6153;
  --text-light:       #f4efe6;
  --text-light-muted: #a89b86;

  /* Type */
  --font-display: 'Crimson Pro', Georgia, 'Times New Roman', serif;
  --font-body:    'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;

  /* Layout - Heritage Craft is book-like: narrower measures, generous vertical */
  --wrap:      min(90%, 1180px);
  --wrap-text: min(90%, 900px);
  --gutter:    clamp(1.25rem, 4vw, 3rem);
  --band:      clamp(3.5rem, 7vw, 6rem);
  --nav-h:     84px;

  /* Motion - minimal and dignified */
  --ease:      cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--parchment);
  color: var(--text-body);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(1rem, 0.97rem + 0.18vw, 1.075rem);
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
  letter-spacing: -0.015em;
  line-height: 1.12;
}

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

::selection { background: var(--brass); color: var(--ink); }

.wrap { width: var(--wrap); margin-inline: auto; }
.wrap-text { width: var(--wrap-text); margin-inline: auto; }

.band { padding-block: var(--band); }

.band-dark  { background: var(--espresso); color: var(--text-light); }
.band-ink   { background: var(--ink);      color: var(--text-light); }
.band-light { background: var(--parchment); color: var(--text-body); }
.band-wheat { background: var(--wheat);     color: var(--text-body); }

.band-dark h1, .band-dark h2, .band-dark h3, .band-dark h4,
.band-ink  h1, .band-ink  h2, .band-ink  h3, .band-ink  h4 { color: var(--text-light); }

/* ---------- eyebrow ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--oxblood);
  margin: 0 0 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.eyebrow::after {
  content: "";
  height: 1px;
  width: clamp(2rem, 6vw, 4.5rem);
  background: currentColor;
  opacity: 0.55;
}
.band-dark .eyebrow, .band-ink .eyebrow, .hero .eyebrow { color: var(--brass); }
.eyebrow--center { justify-content: center; }
.eyebrow--center::before {
  content: "";
  height: 1px;
  width: clamp(2rem, 6vw, 4.5rem);
  background: currentColor;
  opacity: 0.55;
}

/* ---------- display sizes (tuned for Crimson Pro, a text-weight serif) ---------- */
.h-display {
  font-size: clamp(2.5rem, 1.35rem + 4.4vw, 4.2rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.028em;
}
.h-section {
  font-size: clamp(1.95rem, 1.3rem + 2.5vw, 3.05rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.022em;
}
.h-sub {
  font-size: clamp(1.35rem, 1.1rem + 1.1vw, 1.85rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.015em;
}

.lede {
  font-size: clamp(1.06rem, 1rem + 0.35vw, 1.2rem);
  line-height: 1.68;
  color: var(--text-body);
}
.band-dark .lede, .band-ink .lede { color: var(--text-light-muted); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-body);
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1rem 1.65rem;
  border-radius: 999px;
  border: 1px solid transparent;
  min-height: 48px;
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease);
  will-change: transform;
}
.btn__dot {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  background: rgba(255,255,255,0.18);
  transition: transform .45s var(--ease);
}
.btn__dot svg { width: 11px; height: 11px; }
.btn:hover .btn__dot { transform: translateX(3px); }

.btn--solid { background: var(--oxblood-btn); color: #fff; }
.btn--solid:hover { background: var(--oxblood-deep); }

.btn--ghost-light { color: var(--text-light); border-color: rgba(244,239,230,0.42); }
.btn--ghost-light .btn__dot { background: rgba(244,239,230,0.16); }
.btn--ghost-light:hover { border-color: var(--brass); color: var(--brass); }

.btn--ghost-dark { color: var(--text-dark); border-color: rgba(36,29,19,0.3); }
.btn--ghost-dark .btn__dot { background: rgba(36,29,19,0.09); }
.btn--ghost-dark:hover { border-color: var(--oxblood); color: var(--oxblood); }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.85rem; }

/* ---------- nav ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 120;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), height .4s var(--ease);
}
.nav.is-stuck {
  background: var(--espresso);
  box-shadow: 0 1px 0 rgba(191,156,97,0.22);
  height: 72px;
}
.nav__inner {
  width: var(--wrap);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  background: var(--parchment);
  padding: 0.42rem 0.7rem;
  border: 1px solid rgba(191,156,97,0.5);
  transition: padding .4s var(--ease);
}
.nav__logo img {
  width: auto;
  height: 50px;
  max-width: 210px;
  object-fit: contain;
  transition: height .4s var(--ease);
}
.nav.is-stuck .nav__logo { padding: 0.3rem 0.6rem; }
.nav.is-stuck .nav__logo img { height: 42px; }
.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.1vw, 2rem);
  list-style: none;
  margin: 0; padding: 0;
}
.nav__link {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-light);
  padding-block: 0.4rem;
  position: relative;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav__link:hover::after { transform: scaleX(1); }
.nav__right { display: flex; align-items: center; gap: 1.1rem; }
.nav__phone {
  font-size: 0.87rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-light);
  text-decoration: none;
  white-space: nowrap;
}
.nav__phone:hover { color: var(--brass); }
.nav__cta {
  padding: 0.72rem 1.2rem;
  font-size: 0.74rem;
  min-height: 44px;
  color: #fff;
}
.nav__burger {
  display: none;
  width: 46px; height: 46px;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
  z-index: 130;
  padding: 0;
}
.nav__burger span {
  display: block;
  height: 1.5px;
  width: 25px;
  margin: 6px auto;
  background: var(--text-light);
  transition: transform .35s var(--ease), opacity .25s var(--ease);
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- mobile menu ---------- */
.menu {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: var(--espresso);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 1.5rem) var(--gutter) 2.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity .35s var(--ease), transform .35s var(--ease), visibility .35s;
  overflow-y: auto;
}
.menu.is-open { opacity: 1; visibility: visible; transform: none; }
.menu__list { list-style: none; margin: 0 0 2rem; padding: 0; }
.menu__list li + li { margin-top: 0.35rem; }
.menu__link {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 8vw, 2.6rem);
  font-weight: 600;
  color: var(--text-light);
  text-decoration: none;
  display: block;
  padding-block: 0.5rem;
  letter-spacing: -0.02em;
}
.menu__link:hover { color: var(--brass); }
.menu__rule { height: 1px; background: var(--brass-soft); margin-bottom: 1.75rem; }
.menu__foot { display: flex; flex-direction: column; gap: 1rem; align-items: flex-start; }
.menu__phone {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--brass);
  text-decoration: none;
  padding-block: 0.5rem;
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  background: var(--espresso);
  color: var(--text-light);
  padding-top: calc(var(--nav-h) + clamp(2rem, 5vw, 4rem));
  padding-bottom: clamp(2.5rem, 6vw, 5rem);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 520px at 8% 4%, rgba(191,156,97,0.11), transparent 62%),
    linear-gradient(180deg, var(--ink), var(--espresso) 45%, var(--espresso-2));
  pointer-events: none;
}
.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(2rem, 4.5vw, 4rem);
  align-items: center;
}
.hero__copy { min-width: 0; }
.hero h1, .hero h2 { color: var(--text-light); }
.hero h1 { margin-bottom: 1.15rem; }
.hero h1 .accent { color: var(--brass); font-style: italic; font-weight: 600; }
.hero__sub {
  font-size: clamp(1.02rem, 0.97rem + 0.35vw, 1.16rem);
  line-height: 1.68;
  color: var(--text-light-muted);
  max-width: 46ch;
  margin-bottom: 1.9rem;
}
.hero__media { position: relative; }
.hero__frame {
  position: relative;
  border: 1px solid rgba(191,156,97,0.34);
  padding: 0.6rem;
  background: rgba(0,0,0,0.22);
}
.hero__frame img {
  width: 100%;
  height: clamp(300px, 46vw, 560px);
  object-fit: cover;
}
.hero__tag {
  position: absolute;
  left: 0.6rem;
  bottom: 0.6rem;
  max-width: calc(100% - 1.2rem);
  background: rgba(22,17,10,0.86);
  border-left: 2px solid var(--brass);
  color: var(--text-light);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 0.6rem 0.9rem;
}
.hero__meta {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.25rem, 3vw, 2.75rem);
  margin-top: clamp(2.25rem, 4.5vw, 3.5rem);
  padding-top: clamp(1.5rem, 3vw, 2rem);
  border-top: 1px solid rgba(191,156,97,0.24);
}
.hero__meta div { min-width: 8.5rem; }
.hero__meta dt {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 0.35rem;
}
.hero__meta dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 600;
  color: var(--text-light);
  line-height: 1.25;
}

/* ---------- story ---------- */
.story__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.quote {
  margin: 2rem 0 0;
  padding-left: 1.4rem;
  border-left: 2px solid var(--oxblood);
}
.quote p {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.05rem + 0.7vw, 1.55rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.42;
  color: var(--text-dark);
}
.quote cite {
  display: block;
  margin-top: 0.85rem;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.story__figure { position: relative; margin: clamp(2.5rem, 5vw, 4rem) auto 0; }
.story__figure img { width: 100%; height: clamp(240px, 30vw, 420px); object-fit: cover; }
.story__figure figcaption {
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  color: var(--text-muted);
  margin-top: 0.8rem;
}

/* ---------- services ---------- */
.svc { display: grid; gap: clamp(3rem, 7vw, 5.5rem); margin-top: clamp(2.5rem, 5vw, 4rem); }
.svc__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.75rem, 4.5vw, 4rem);
  align-items: center;
}
.svc__row:nth-child(even) .svc__media { order: -1; }
.svc__media img { width: 100%; height: clamp(240px, 30vw, 400px); object-fit: cover; }
.svc__num {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--oxblood);
  display: block;
  margin-bottom: 0.7rem;
}
.svc__body h3 { margin-bottom: 0.85rem; }
.svc__list {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  border-top: 1px solid rgba(36,29,19,0.14);
}
.svc__list li {
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(36,29,19,0.14);
  font-size: 0.94rem;
  color: var(--text-body);
  display: flex;
  gap: 0.7rem;
  align-items: baseline;
}
.svc__list li::before {
  content: "";
  flex: 0 0 auto;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brass);
  transform: translateY(-2px);
}

/* ---------- places index (signature) ---------- */
.places { background: var(--wheat); position: relative; }
.places__head { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(1.5rem, 4vw, 3.5rem); align-items: end; }
.places__index {
  margin-top: clamp(2.25rem, 4.5vw, 3.25rem);
  columns: 4;
  column-gap: clamp(1.25rem, 3vw, 2.5rem);
  border-top: 1px solid rgba(36,29,19,0.2);
  padding-top: 1.5rem;
}
.places__index li {
  break-inside: avoid;
  list-style: none;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.3;
  color: var(--text-dark);
  padding: 0.42rem 0;
  border-bottom: 1px solid rgba(36,29,19,0.11);
  transition: color .3s var(--ease), padding-left .3s var(--ease);
}
.places__index li:hover { color: var(--oxblood); padding-left: 0.3rem; }
.places__index { margin-bottom: 0; padding-left: 0; }
.places__note {
  margin-top: 1.6rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ---------- projects ---------- */
.proj { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1.25rem, 2.6vw, 2rem); margin-top: clamp(2.25rem, 4.5vw, 3.25rem); }
.proj__card { background: var(--espresso-2); border: 1px solid rgba(191,156,97,0.2); }
.proj__card img { width: 100%; height: clamp(220px, 24vw, 300px); object-fit: cover; }
.proj__body { padding: 1.4rem 1.4rem 1.6rem; }
.proj__body h3 { font-size: 1.32rem; margin-bottom: 0.55rem; }
.proj__body p { font-size: 0.92rem; color: var(--text-light-muted); line-height: 1.62; margin: 0; }

/* ---------- shop ---------- */
.shop__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1rem, 2.2vw, 1.6rem); margin-bottom: clamp(2.25rem, 4.5vw, 3.25rem); }
.shop__grid img { width: 100%; height: clamp(180px, 20vw, 260px); object-fit: cover; }
.pillars { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1.5rem, 3.5vw, 3rem); }
.pillars h3 { font-size: 1.3rem; margin-bottom: 0.7rem; }
.pillars p { font-size: 0.95rem; color: var(--text-light-muted); line-height: 1.65; margin: 0; }
.pillars > div { padding-top: 1.25rem; border-top: 1px solid rgba(191,156,97,0.28); }

/* ---------- team ---------- */
.team { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1.75rem, 4vw, 3rem); margin-top: clamp(2.25rem, 4.5vw, 3.25rem); }
.team__card { text-align: center; }
.team__card img {
  width: clamp(140px, 15vw, 178px);
  height: clamp(140px, 15vw, 178px);
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.2rem;
  border: 1px solid rgba(191,156,97,0.4);
}
.team__card h3 { font-size: 1.35rem; margin-bottom: 0.3rem; }
.team__role {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 0.9rem;
}
.team__card p { font-size: 0.92rem; color: var(--text-light-muted); line-height: 1.65; margin: 0; }

/* ---------- testimonials ---------- */
.says { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1.5rem, 3.2vw, 2.5rem); margin-top: clamp(2.25rem, 4.5vw, 3.25rem); }
.says__card { border-top: 2px solid var(--oxblood); padding-top: 1.4rem; }
.says__card blockquote {
  margin: 0 0 1.1rem;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1rem + 0.35vw, 1.18rem);
  font-style: italic;
  line-height: 1.5;
  color: var(--text-dark);
}
.says__who {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ---------- contact ---------- */
.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.contact__list { list-style: none; margin: 0; padding: 0; }
.contact__list li { padding: 1.1rem 0; border-bottom: 1px solid rgba(191,156,97,0.25); }
.contact__list li:first-child { border-top: 1px solid rgba(191,156,97,0.25); }
.contact__label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 0.35rem;
}
.contact__val {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-light);
  text-decoration: none;
  line-height: 1.35;
  display: inline-block;
  padding-block: 0.1rem;
}
/* tappable contact links need a 44px target (QA gate) */
a.contact__val { padding-block: 0.7rem; }
a.contact__val:hover { color: var(--brass); }

/* ---------- footer ---------- */
.footer { background: var(--ink); color: var(--text-light-muted); padding-block: clamp(2.75rem, 5vw, 4rem) 2rem; }
.footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr) minmax(0, 0.85fr);
  gap: clamp(1.75rem, 4vw, 3.5rem);
  padding-bottom: 2.25rem;
  border-bottom: 1px solid rgba(191,156,97,0.2);
}
.footer__logo img {
  width: auto; height: 56px; max-width: 210px; object-fit: contain;
  margin-bottom: 1.1rem;
  background: var(--parchment);
  padding: 0.42rem 0.7rem;
  border: 1px solid rgba(191,156,97,0.4);
}
.footer h4 {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 1rem;
}
.footer p, .footer li { font-size: 0.9rem; line-height: 1.7; }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer__nav a {
  text-decoration: none;
  color: var(--text-light-muted);
  display: block;
  padding-block: 0.65rem;
}
.footer__nav a:hover { color: var(--brass); }
.footer a { color: var(--text-light-muted); }
.footer__bottom {
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
  justify-content: space-between;
  font-size: 0.8rem;
}

/* ---------- 404 ---------- */
.error {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--espresso);
  color: var(--text-light);
  padding: calc(var(--nav-h) + 3rem) var(--gutter) 4rem;
}
.error__code {
  font-family: var(--font-display);
  font-size: clamp(5rem, 20vw, 11rem);
  font-weight: 700;
  line-height: 0.9;
  color: rgba(191,156,97,0.26);
  margin-bottom: 1rem;
}
.error h1 { margin-bottom: 1rem; }
.error p { max-width: 46ch; margin-inline: auto; color: var(--text-light-muted); margin-bottom: 2rem; }

/* ---------- reveals ---------- */
html.js .reveal { opacity: 0; transform: translateY(18px); }

@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1 !important; transform: none !important; }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .nav__links, .nav__phone { display: none; }
  .nav__burger { display: block; }
  .hero__grid { grid-template-columns: minmax(0, 1fr); gap: clamp(1.75rem, 5vw, 2.5rem); }
  .hero__copy { min-width: 0; }
  .places__index { columns: 3; }
  .proj, .shop__grid, .pillars, .team, .says { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer__top { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
  :root { --nav-h: 72px; }
  .story__grid, .svc__row, .contact__grid, .places__head { grid-template-columns: minmax(0, 1fr); }
  .svc__row:nth-child(even) .svc__media { order: 0; }
  .places__index { columns: 2; }
  .proj, .shop__grid, .pillars, .team, .says { grid-template-columns: minmax(0, 1fr); }
  .hero__frame img { height: clamp(260px, 62vw, 380px); }
  .nav__cta { display: none; }
}

/* On phones the index flows as one continuous set line, like a book colophon,
   instead of 68 stacked rows. */
@media (max-width: 640px) {
  .places__index {
    columns: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    border-bottom: 1px solid rgba(36,29,19,0.2);
    padding-bottom: 1.35rem;
  }
  .places__index li {
    border-bottom: 0;
    padding: 0.2rem 0;
    font-size: 1rem;
  }
  .places__index li:hover { padding-left: 0; }
  .places__index li:not(:last-child)::after {
    content: "";
    display: inline-block;
    width: 4px; height: 4px;
    border-radius: 50%;
    background: var(--oxblood);
    opacity: 0.55;
    margin: 0 0.5rem;
    vertical-align: middle;
  }
}

@media (max-width: 480px) {
  .btn { width: 100%; justify-content: space-between; }
  .btn-row { gap: 0.7rem; }
  .hero__meta { gap: 1.25rem 1.75rem; }
  .footer__top { grid-template-columns: minmax(0, 1fr); }
  .footer__bottom { flex-direction: column; }
}
