/* Hero Section */
.hero-section {
  padding-top: calc(var(--header-height) + var(--spacing-xl));
  padding-bottom: var(--spacing-xxl);
  min-height: 80vh;
  display: flex;
  align-items: center;
}

/* Single column layout: text on top, photo below */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-xl);
  justify-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-xs);
  display: inline-block;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  line-height: 1.1;
  color: var(--color-brand);
  margin-bottom: var(--spacing-md);
  font-weight: 500;
}

.hero-description {
  font-size: 1.3rem;
  font-family: var(--font-body);
  color: var(--color-text-primary);
  font-weight: 500;
  margin-bottom: var(--spacing-md);
  line-height: 1.5;
}

.hero-subtext {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  margin-bottom: var(--spacing-lg);
  max-width: 600px;
}

.hero-cta-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-md);
}

/* Rounded Action Button (Arrow) */
.btn-arrow {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: transparent;
  border: 2px solid var(--color-brand);
  color: var(--color-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.btn-arrow svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  transition: transform var(--transition-normal);
}

.btn-arrow:hover {
  background-color: var(--color-brand);
  color: var(--color-bg-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-arrow:hover svg {
  transform: translateX(4px);
}

/* Photo (landscape, full original format) */
.hero-image-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}

.hero-image-card {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 720px;
}

.hero-image-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-section {
    padding-top: calc(var(--header-height) + var(--spacing-md));
    padding-bottom: var(--spacing-xl);
  }
  
  .hero-grid {
    gap: var(--spacing-lg);
  }
}
