:root {
  --hop-accent: #C68F84;
  --hop-accent-dark: #B67B71;

  --hop-heading: #2E2A2A;
  --hop-body: #4A4545;

  --hop-border: #E8DDD8;

  --hop-bg: #FAF8F6;
  --hop-white: #FFFFFF;
  --hop-alt: #F4EEEA;

  --hop-font-heading: 'Cormorant Garamond', serif;
  --hop-font-body: 'Montserrat', sans-serif;

  --hop-container: 1240px;
  --hop-radius: 2px;

  --hop-shadow: 0 12px 30px rgba(46, 42, 42, 0.06);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--hop-font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--hop-body);
  background: var(--hop-bg);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1rem;
  font-family: var(--hop-font-heading);
  font-weight: 600;
  line-height: 1.1;
  color: var(--hop-heading);
}

h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

p {
  margin: 0 0 1.2rem;
}

/* Links */
a {
  color: var(--hop-accent);
  text-decoration: none;
  transition: 0.25s ease;
}

a:hover {
  color: var(--hop-accent-dark);
}

/* Images */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Layout */
.hop-container {
  width: min(100% - 2rem, var(--hop-container));
  margin-inline: auto;
}

.hop-section {
  padding: 6rem 0;
}

.hop-section--alt {
  background: var(--hop-alt);
}

/* Buttons */
.hop-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 1rem 1.75rem;

  background: var(--hop-accent);
  border: 1px solid var(--hop-accent);

  color: white;
  font-size: 0.8rem;
  font-weight: 600;

  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.hop-button:hover {
  background: var(--hop-accent-dark);
  border-color: var(--hop-accent-dark);
  color: white;
}

.hop-button--ghost {
  background: transparent;
  color: var(--hop-accent);
}

/* Eyebrow Text */
.hop-eyebrow {
  display: inline-block;
  margin-bottom: 1rem;

  font-size: 0.75rem;
  font-weight: 600;

  letter-spacing: 0.18em;
  text-transform: uppercase;

  color: var(--hop-accent);
}

/* Grids */
.hop-grid {
  display: grid;
  gap: 2rem;
}

.hop-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hop-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* Cards */
.hop-card,
.hop-category-tile {
  background: var(--hop-white);
  border: 1px solid var(--hop-border);
  box-shadow: var(--hop-shadow);
}

.hop-card__content,
.hop-category-tile__content {
  padding: 1.75rem;
}

/* Image Placeholders */
.hop-image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 340px;

  background: linear-gradient(180deg, #f9f5f2 0%, #f2ebe7 100%);
  border: 1px solid var(--hop-border);

  color: var(--hop-body);
  font-size: 0.8rem;
  font-weight: 600;

  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hop-image-placeholder--small {
  min-height: 240px;
}

/* Responsive */
@media (max-width: 920px) {
  .hop-grid--2,
  .hop-grid--3 {
    grid-template-columns: 1fr;
  }

  .hop-section {
    padding: 4rem 0;
  }
}