/* Harbor Oak — franchise café demo websites */

.ho {
  --ho-cream: #f6f1e8;
  --ho-parchment: #faf7f2;
  --ho-espresso: #2c2419;
  --ho-charcoal: #1f1a14;
  --ho-forest: #3d5a45;
  --ho-olive: #6b705c;
  --ho-terracotta: #c45c3e;
  --ho-terracotta-dark: #a84a30;
  --ho-warm: #8b5a3c;
  --ho-muted: #6f6558;
  --ho-line: rgba(44, 36, 25, 0.1);
  --ho-font: 'DM Sans', 'Inter', system-ui, sans-serif;
  --ho-display: 'Fraunces', Georgia, serif;
  --ho-wrap: min(1140px, calc(100% - 2.5rem));
  margin: 0;
  font-family: var(--ho-font);
  color: var(--ho-espresso);
  background: var(--ho-parchment);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.ho--product-first {
  --ho-display: 'Playfair Display', Georgia, serif;
  --ho-font: 'Inter', system-ui, sans-serif;
  --ho-accent: var(--ho-terracotta);
  background: #fff;
}

.ho--neighborhood-favorite {
  --ho-display: 'Lora', Georgia, serif;
  --ho-font: 'Work Sans', system-ui, sans-serif;
  --ho-accent: var(--ho-warm);
  background: var(--ho-cream);
}

.ho--visit-first {
  --ho-accent: var(--ho-forest);
}

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

.ho-site {
  background: #fff;
  overflow-x: clip;
}

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

.ho-kicker {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ho-olive);
}

.ho-lead {
  font-size: 1.08rem;
  color: var(--ho-muted);
  max-width: 42ch;
  margin: 0 0 1.25rem;
}

.ho-lead--light {
  color: rgba(255, 255, 255, 0.88);
}

.ho-stars {
  color: #d4a017;
  letter-spacing: 0.06em;
}

.ho-open {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(61, 90, 69, 0.12);
  color: var(--ho-forest);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ho-open small {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  opacity: 0.85;
}

.ho-open--inline {
  display: inline-block;
  margin-bottom: 0.35rem;
}

/* Header */
.ho-header {
  position: sticky;
  top: 2rem;
  z-index: 40;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--ho-line);
}

.ho-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  position: relative;
}

.ho-logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: var(--ho-charcoal);
}

.ho-logo__leaf {
  width: 32px;
  height: 32px;
  border-radius: 50% 50% 50% 0;
  background: linear-gradient(145deg, var(--ho-forest), #5a7d62);
  transform: rotate(-45deg);
}

.ho-logo__text {
  font-family: var(--ho-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.ho-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  font-size: 0.88rem;
  font-weight: 600;
}

.ho-nav a {
  color: var(--ho-muted);
  text-decoration: none;
}

.ho-nav a:hover,
.ho-nav a:focus-visible {
  color: var(--ho-espresso);
}

.ho-nav__status .ho-open {
  font-size: 0.65rem;
  padding: 0.3rem 0.55rem;
}

.ho-nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.ho-nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--ho-charcoal);
}

.ho-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.15rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: transform 180ms ease, background 180ms ease;
}

.ho-btn:hover {
  transform: translateY(-1px);
}

.ho-btn:focus-visible {
  outline: 2px solid var(--ho-accent, var(--ho-forest));
  outline-offset: 3px;
}

.ho-btn--primary {
  background: var(--ho-accent, var(--ho-forest));
  color: #fff;
}

.ho-btn--secondary {
  background: transparent;
  color: var(--ho-espresso);
  box-shadow: inset 0 0 0 1.5px var(--ho-line);
}

.ho-btn--ghost {
  background: transparent;
  color: var(--ho-espresso);
  margin-top: 0.45rem;
}

.ho-btn--ghost-dark {
  background: transparent;
  box-shadow: inset 0 0 0 1.5px rgba(44, 36, 25, 0.2);
  color: var(--ho-espresso);
}

.ho-btn--ghost-light {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.ho-btn--warm {
  background: var(--ho-warm);
  color: #fff;
}

.ho-btn--accent {
  background: var(--ho-terracotta);
  color: #fff;
}

.ho-btn--lg {
  padding: 0.85rem 1.35rem;
  font-size: 0.95rem;
}

.ho-nav__order {
  color: #fff !important;
}

/* Footer */
.ho-footer {
  background: var(--ho-charcoal);
  color: rgba(255, 255, 255, 0.72);
  padding: 3rem 0 0;
}

.ho-footer__brand {
  font-family: var(--ho-display);
  font-size: 1.2rem;
  color: #fff;
  margin: 0 0 0.35rem;
}

.ho-footer a {
  color: #fff;
}

.ho-footer__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.7fr 0.9fr;
  gap: 2rem;
  padding-bottom: 2rem;
}

.ho-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ho-footer__links a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.ho-footer__legal {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.85rem 0 1.25rem;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.38);
}

.ho-mobile-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.12);
}

.ho-mobile-bar a {
  padding: 0.95rem;
  text-align: center;
  font-weight: 800;
  text-decoration: none;
  font-size: 0.88rem;
}

.ho-mobile-bar__directions,
.ho-mobile-bar__visit {
  background: var(--ho-espresso);
  color: #fff;
}

.ho-mobile-bar__order {
  background: var(--ho-accent, var(--ho-forest));
  color: #fff;
}

/* ═══ VISIT FIRST ═══ */
.ho-vf-hero {
  position: relative;
  min-height: 72vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.ho-vf-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ho-vf-hero__media img,
.ho-vf-hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ho-vf-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(31, 26, 20, 0.82) 0%, rgba(31, 26, 20, 0.35) 55%, rgba(31, 26, 20, 0.12) 100%),
    linear-gradient(180deg, transparent 42%, rgba(31, 26, 20, 0.28) 72%, rgba(246, 241, 232, 0.96) 100%);
}

.ho-vf-hero__content {
  position: relative;
  z-index: 2;
  padding: 3rem 0 4rem;
  color: #fff;
  max-width: 560px;
}

.ho-vf-hero .ho-lead {
  color: rgba(255, 255, 255, 0.88);
}

.ho-vf-hero h1 {
  font-family: var(--ho-display);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  line-height: 1.08;
  margin: 1rem 0;
  letter-spacing: -0.02em;
}

.ho-vf-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.ho-vf-hero .ho-btn--primary {
  background: var(--ho-forest);
}

.ho-vf-hero .ho-btn--secondary {
  color: #fff;
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.45);
}

.ho-vf-hero__address {
  font-style: normal;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
}

.ho-vf-utility {
  position: relative;
  z-index: 3;
  margin-top: -1.25rem;
  background: var(--ho-cream);
  border-bottom: 1px solid var(--ho-line);
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -10px 36px rgba(31, 26, 20, 0.08);
}

.ho-vf-utility__strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  padding: 1.35rem 0 1.1rem;
}

.ho-vf-utility__item span {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ho-olive);
}

.ho-vf-utility__item strong {
  font-size: 0.92rem;
  color: var(--ho-espresso);
}

.ho-vf-now {
  padding: 3.5rem 0;
}

.ho-vf-now__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.ho-vf-now__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 0.75rem;
}

.ho-vf-now__label {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ho-olive);
}

.ho-vf-now__item h3 {
  margin: 0.25rem 0 0;
  font-family: var(--ho-display);
  font-size: 1.15rem;
}

.ho-vf-location {
  padding: 3rem 0;
  background: var(--ho-parchment);
  border-top: 1px solid var(--ho-line);
}

.ho-vf-location__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.ho-vf-location h2 {
  font-family: var(--ho-display);
  font-size: 2rem;
  margin: 0 0 0.75rem;
}

.ho-vf-location address {
  font-style: normal;
  margin: 1.25rem 0;
  line-height: 1.55;
}

.ho-vf-location__map-img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: 16px;
}

.ho-vf-space {
  padding: 3.5rem 0;
}

.ho-vf-space__head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.ho-vf-space__head h2 {
  font-family: var(--ho-display);
  font-size: 1.85rem;
  margin: 0;
  max-width: 20ch;
}

.ho-vf-space__tags {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.ho-vf-space__tags li {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ho-olive);
}

.ho-vf-space__gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-auto-rows: minmax(200px, auto);
  gap: 0.65rem;
}

.ho-vf-space__gallery figure {
  margin: 0;
  overflow: hidden;
  min-height: 0;
}

.ho-vf-space__gallery figure:first-child {
  grid-row: span 2;
}

.ho-vf-space__gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.ho-vf-menu {
  padding: 3rem 0;
  background: var(--ho-charcoal);
  color: #fff;
  text-align: center;
}

.ho-vf-menu h2 {
  font-family: var(--ho-display);
  margin: 0 0 1rem;
}

.ho-vf-menu__cats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.ho-vf-menu__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}

.ho-vf-menu .ho-btn--secondary {
  color: #fff;
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.35);
}

.ho-vf-reviews {
  padding: 3.5rem 0;
}

.ho-vf-reviews__score {
  text-align: center;
  margin-bottom: 2rem;
}

.ho-vf-reviews__score strong {
  font-family: var(--ho-display);
  font-size: 3rem;
  display: block;
  line-height: 1;
}

.ho-vf-reviews__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.ho-vf-reviews blockquote {
  margin: 0;
  padding: 0;
}

.ho-vf-reviews blockquote p {
  font-family: var(--ho-display);
  font-size: 1.25rem;
  line-height: 1.45;
  margin: 0.5rem 0 0.75rem;
}

.ho-vf-reviews footer {
  font-size: 0.86rem;
  color: var(--ho-muted);
}

/* ═══ PRODUCT FIRST ═══ */
.ho-pf-hero {
  padding: 2.5rem 0 1rem;
}

.ho-pf-hero__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: center;
}

.ho-pf-hero h1 {
  font-family: var(--ho-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.05;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.ho-pf-hero__meta {
  margin: 1rem 0 0;
  font-size: 0.88rem;
  color: var(--ho-muted);
}

.ho-pf-hero__meta a {
  color: var(--ho-terracotta);
  font-weight: 600;
}

.ho-pf-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.25rem;
}

.ho-pf-hero__collage {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  min-height: 420px;
  max-height: 520px;
  aspect-ratio: 1;
}

.ho-pf-hero__collage img,
.ho-pf-hero__tile {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  border-radius: 14px;
}

.ho-pf-cats {
  position: sticky;
  top: 5.5rem;
  z-index: 30;
  background: #fff;
  border-bottom: 1px solid var(--ho-line);
}

.ho-pf-cats__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.5rem;
  padding: 0.85rem 0;
  overflow-x: auto;
}

.ho-pf-cats a {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ho-muted);
  text-decoration: none;
  white-space: nowrap;
}

.ho-pf-cats a:hover {
  color: var(--ho-terracotta);
}

.ho-pf-products {
  padding: 3rem 0;
}

.ho-pf-products h2 {
  font-family: var(--ho-display);
  font-size: 2rem;
  margin: 0 0 1.5rem;
}

.ho-pf-products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.ho-pf-product {
  display: flex;
  flex-direction: column;
}

.ho-pf-product--feature {
  grid-column: span 1;
}

.ho-pf-product__media img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 0.75rem;
  transition: transform 400ms ease;
}

.ho-pf-product:hover .ho-pf-product__media img {
  transform: scale(1.02);
}

.ho-pf-product__cat {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ho-terracotta);
}

.ho-pf-product h3 {
  margin: 0.2rem 0 0.35rem;
  font-family: var(--ho-display);
  font-size: 1.1rem;
}

.ho-pf-product p {
  margin: 0 0 0.5rem;
  font-size: 0.88rem;
  color: var(--ho-muted);
  flex: 1;
}

.ho-pf-product strong {
  font-size: 1rem;
}

.ho-pf-seasonal {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 420px;
}

.ho-pf-seasonal__media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.ho-pf-seasonal__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem 0;
}

.ho-pf-seasonal h2 {
  font-family: var(--ho-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin: 0 0 0.75rem;
}

.ho-pf-order {
  padding: 3rem 0;
  background: var(--ho-cream);
}

.ho-pf-order__panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(44, 36, 25, 0.08);
}

.ho-pf-order h2 {
  font-family: var(--ho-display);
  margin: 0 0 0.35rem;
}

.ho-pf-order address {
  font-style: normal;
  color: var(--ho-muted);
  margin-top: 0.5rem;
}

.ho-pf-retail {
  padding: 3rem 0;
}

.ho-pf-retail h2 {
  font-family: var(--ho-display);
  margin: 0 0 1.25rem;
}

.ho-pf-retail__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
}

.ho-pf-retail img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 0.65rem;
}

.ho-pf-visit {
  padding: 2rem 0 3rem;
  border-top: 1px solid var(--ho-line);
}

.ho-pf-visit__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

/* ═══ NEIGHBORHOOD FAVORITE ═══ */
.ho-nf-hero {
  position: relative;
  min-height: 70vh;
  display: grid;
  align-items: end;
}

.ho-nf-hero__media {
  position: absolute;
  inset: 0;
}

.ho-nf-hero__media img,
.ho-nf-hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ho-nf-hero__fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(31, 26, 20, 0.75) 0%, rgba(31, 26, 20, 0.15) 60%);
}

.ho-nf-hero__content {
  position: relative;
  z-index: 1;
  padding: 3rem 0;
  color: #fff;
  max-width: 520px;
}

.ho-nf-hero h1 {
  font-family: var(--ho-display);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-style: italic;
  margin: 0 0 0.75rem;
}

.ho-nf-hero__meta {
  margin: 1rem 0 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.78);
}

.ho-nf-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.25rem;
}

.ho-nf-story {
  padding: 4rem 0;
}

.ho-nf-story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.ho-nf-story h2 {
  font-family: var(--ho-display);
  font-size: 2.2rem;
  margin: 0 0 1rem;
}

.ho-nf-story p {
  color: var(--ho-muted);
  margin: 0 0 1rem;
}

.ho-nf-story__photo {
  overflow: hidden;
  border-radius: 4px 24px 24px 24px;
}

.ho-nf-story__photo img {
  width: 100%;
  aspect-ratio: 5 / 6;
  object-fit: cover;
  border-radius: 4px 24px 24px 24px;
}

.ho-nf-people {
  padding: 3rem 0;
  background: #fff;
}

.ho-nf-people h2 {
  font-family: var(--ho-display);
  text-align: center;
  margin: 0 0 2rem;
}

.ho-nf-people__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.ho-nf-person {
  text-align: center;
}

.ho-nf-person__photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 50% 50 12px 12px;
  margin-bottom: 0.85rem;
  filter: saturate(0.92);
}

.ho-nf-person h3 {
  margin: 0;
  font-family: var(--ho-display);
}

.ho-nf-person p {
  margin: 0.2rem 0 0;
  color: var(--ho-warm);
  font-weight: 600;
  font-size: 0.88rem;
}

.ho-nf-community {
  padding: 3rem 0;
}

.ho-nf-community h2 {
  font-family: var(--ho-display);
  margin: 0 0 1.5rem;
}

.ho-nf-community__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.ho-nf-community__list article {
  padding: 1.25rem 0;
  border-top: 2px solid var(--ho-warm);
}

.ho-nf-community__list time {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ho-olive);
}

.ho-nf-community__list h3 {
  margin: 0.35rem 0 0.25rem;
  font-size: 1.05rem;
}

.ho-nf-community__list p {
  margin: 0;
  color: var(--ho-muted);
  font-size: 0.88rem;
}

.ho-nf-gallery__mosaic {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(220px, auto);
  gap: 0.4rem;
}

.ho-nf-gallery__item {
  margin: 0;
  overflow: hidden;
  min-height: 0;
}

.ho-nf-gallery__item--1 { grid-column: 1 / span 2; grid-row: 1 / span 2; }
.ho-nf-gallery__item--2 { grid-column: 3 / span 2; grid-row: 1; }
.ho-nf-gallery__item--3 { grid-column: 5 / span 2; grid-row: 1; }
.ho-nf-gallery__item--4 { grid-column: 3 / span 2; grid-row: 2; }
.ho-nf-gallery__item--5 { grid-column: 5 / span 2; grid-row: 2; }
.ho-nf-gallery__item--6 { grid-column: 1 / span 2; grid-row: 3; }
.ho-nf-gallery__item--7 { grid-column: 3 / span 2; grid-row: 3; }
.ho-nf-gallery__item--8 { grid-column: 5 / span 2; grid-row: 3; }

.ho-nf-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ho-nf-reviews {
  padding: 3.5rem 0;
  background: var(--ho-charcoal);
  color: #fff;
}

.ho-nf-reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.ho-nf-reviews blockquote {
  margin: 0;
}

.ho-nf-reviews blockquote p {
  font-family: var(--ho-display);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.5;
  margin: 0.5rem 0 0.75rem;
}

.ho-nf-reviews footer {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}

.ho-nf-favorites {
  padding: 3.5rem 0;
  text-align: center;
}

.ho-nf-favorites h2 {
  font-family: var(--ho-display);
  margin: 0 0 1.5rem;
}

.ho-nf-favorites__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.ho-nf-favorites img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 0.5rem;
}

.ho-nf-favorites h3 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
}

.ho-nf-visit {
  padding: 3rem 0 4rem;
  background: var(--ho-cream);
}

.ho-nf-visit__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.ho-nf-visit h2 {
  font-family: var(--ho-display);
  margin: 0 0 0.75rem;
}

.ho-nf-visit__map img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 16px;
}

/* Responsive */
@media (max-width: 1024px) {
  .ho-footer__grid,
  .ho-vf-location__grid,
  .ho-pf-hero__grid,
  .ho-pf-seasonal,
  .ho-nf-story__grid,
  .ho-nf-visit__grid {
    grid-template-columns: 1fr;
  }

  .ho-pf-seasonal {
    grid-template-rows: auto auto;
  }

  .ho-vf-now__grid,
  .ho-pf-products__grid,
  .ho-pf-retail__grid,
  .ho-nf-people__grid,
  .ho-nf-community__list,
  .ho-nf-favorites__grid,
  .ho-nf-reviews__grid {
    grid-template-columns: 1fr 1fr;
  }

  .ho-vf-space__gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .ho-vf-space__gallery figure:first-child {
    grid-row: auto;
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .ho-header {
    top: 3.2rem;
  }

  .ho-nav-toggle {
    display: block;
  }

  .ho-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: #fff;
    border-bottom: 1px solid var(--ho-line);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  }

  .ho-nav.is-open {
    display: flex;
  }

  .ho-vf-hero,
  .ho-nf-hero {
    min-height: 62vh;
  }

  .ho-vf-utility {
    margin-top: -0.75rem;
    border-radius: 16px 16px 0 0;
  }

  .ho-vf-now__grid,
  .ho-vf-reviews__grid,
  .ho-pf-products__grid,
  .ho-pf-retail__grid,
  .ho-nf-people__grid,
  .ho-nf-community__list,
  .ho-nf-favorites__grid,
  .ho-nf-reviews__grid {
    grid-template-columns: 1fr;
  }

  .ho-pf-hero__collage {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(2, minmax(140px, 1fr));
    min-height: 0;
    max-height: none;
    aspect-ratio: auto;
  }

  .ho-nf-gallery__mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .ho-nf-gallery__item {
    grid-column: auto !important;
    grid-row: auto !important;
    min-height: 180px;
  }

  .ho-nf-gallery__item--1 {
    grid-column: 1 / -1 !important;
    min-height: 240px;
  }

  .ho-mobile-bar {
    display: grid;
  }

  .ho--visit-first,
  .ho--product-first,
  .ho--neighborhood-favorite {
    padding-bottom: 3.5rem;
  }

  .ho-vf-utility__strip {
    gap: 0.75rem 1.25rem;
  }
}

@media (max-width: 480px) {
  .ho-wrap {
    width: min(1140px, calc(100% - 1.25rem));
  }

  .ho-footer__grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ho-btn:hover,
  .ho-pf-product:hover .ho-pf-product__media img {
    transform: none;
  }
}
