/* =========================================
   FRONT PAGE HERO
========================================= */

.hop-page-hero {
  padding: 5rem 0 6rem;
}

.hop-page-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hop-page-hero__copy {
  max-width: 640px;
}

.hop-page-hero__copy h1 {
  margin-bottom: 1.5rem;
}

.hop-page-hero__lead {
  font-size: 1.05rem;
  line-height: 1.85;
  max-width: 560px;
}

.hop-page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hop-page-hero__media .hop-image-placeholder {
  min-height: 540px;
  border-radius: 4px;
}

/* =========================================
   CATEGORY SECTION
========================================= */

.hop-category-tile {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hop-category-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(46, 42, 42, 0.08);
}

.hop-category-tile__content {
  padding: 2rem;
}

.hop-category-tile__content h3 {
  margin-bottom: 0.75rem;
}

.hop-category-tile__content p {
  margin-bottom: 1.25rem;
}

.hop-category-tile__content a {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* =========================================
   SPLIT SHOWCASE SECTION
========================================= */

.hop-split-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4rem;
  align-items: center;
}

.hop-split-showcase h2 {
  margin-bottom: 1rem;
}

.hop-split-showcase p {
  margin-bottom: 1.5rem;
}

/* =========================================
   FEATURE CARDS
========================================= */

.hop-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hop-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(46, 42, 42, 0.08);
}

.hop-card__content {
  padding: 2rem;
}

.hop-card__content h3 {
  margin-bottom: 0.75rem;
}

.hop-card__content p {
  margin-bottom: 1.25rem;
}

.hop-card__content a {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* =========================================
   BUTTON ENHANCEMENTS
========================================= */

.hop-page-hero .hop-button {
  min-width: 210px;
}

.hop-button--ghost {
  background: transparent;
  border: 1px solid var(--hop-border);
  color: var(--hop-heading);
}

.hop-button--ghost:hover {
  background: var(--hop-alt);
  border-color: var(--hop-border);
  color: var(--hop-heading);
}

/* =========================================
   SECTION SPACING / REFINEMENTS
========================================= */

.hop-section + .hop-section {
  border-top: 1px solid rgba(232, 221, 216, 0.35);
}

/* =========================================
   MOBILE / TABLET
========================================= */

@media (max-width: 1024px) {
  .hop-page-hero__inner,
  .hop-split-showcase {
    gap: 2.5rem;
  }

  .hop-page-hero__media .hop-image-placeholder {
    min-height: 420px;
  }
}

@media (max-width: 920px) {
  .hop-page-hero {
    padding: 3.5rem 0 4rem;
  }

  .hop-page-hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hop-page-hero__copy {
    max-width: 100%;
    margin: 0 auto;
  }

  .hop-page-hero__lead {
    max-width: 100%;
    margin: 0 auto;
  }

  .hop-page-hero__actions {
    justify-content: center;
  }

  .hop-split-showcase {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hop-page-hero__media .hop-image-placeholder {
    min-height: 300px;
  }
}

@media (max-width: 640px) {
  .hop-page-hero__copy h1 {
    font-size: 2.6rem;
  }

  .hop-page-hero__lead {
    font-size: 1rem;
  }

  .hop-page-hero .hop-button {
    width: 100%;
  }

  .hop-category-tile__content,
  .hop-card__content {
    padding: 1.5rem;
  }
}
.hop-home-hero {
	padding: 100px 0 80px;
}

.hop-home-hero__grid {
	display: grid;
	grid-template-columns: 1fr 560px;
	align-items: center;
	gap: 60px;
}

.hop-home-hero__content {
	max-width: 600px;
}

.hop-home-hero__eyebrow {
	font-size: 12px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #a89c96;
	margin-bottom: 12px;
}

.hop-home-hero h1 {
	font-size: clamp(44px, 5vw, 72px);
	line-height: 1.05;
	margin-bottom: 20px;
}

.hop-home-hero__lead {
	font-size: 16px;
	line-height: 1.7;
	color: #6d6460;
	margin-bottom: 30px;
}

.hop-home-hero__image img {
	width: 100%;
	max-width: 420px;
	height: 480px;
	object-fit: cover;
	border-radius: 18px;
}

/* Mobile */
@media (max-width: 768px) {
	.hop-home-hero__grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.hop-home-hero__image img {
		height: auto;
	}
}
.hop-home-hero__image img {
	width: 100%;
	max-width: 560px;   /* 🔥 increase this */
	height: auto;       /* ✅ remove fixed height */
	object-fit: cover;
	border-radius: 18px;
}
.hop-home-hero__grid {
	display: grid;
	grid-template-columns: 1fr 560px; /* wider image column */
	align-items: center;
	gap: 60px;
}