/* ═══ HERO ═══ */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 0 0 3rem 0;
  animation: fade-in 0.6s ease-out;
}

.hero-left {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-right {
  text-align: left;
  margin-top: 3rem;
}

.hero-logo {
  width: 200px;
  height: auto;
  transform: scale(2.5);
  pointer-events: none;
}

.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  color: var(--text-bright);
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.hero-sub {
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 0.75rem;
}

.hero-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--text);
  margin-top: 1.5rem;
  line-height: 1.5;
}

.hero-tagline em {
  color: var(--crimson);
  font-style: italic;
}

.cursor {
  display: inline-block;
  width: 0.55em;
  height: 1.1em;
  background: var(--crimson);
  vertical-align: text-bottom;
  margin-left: 2px;
  animation: blink 1s step-end infinite;
}

/* ═══ PHILOSOPHY ═══ */
.philosophy {
  margin: 0 auto;
  text-align: justify;
  background: var(--bg-raised);
  padding: 2rem 2.5rem;
  box-shadow: 2px 3px 10px rgba(44, 24, 16, 0.08);
}

.philosophy p {
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 0.85rem;
  line-height: 1.8;
}

.philosophy p:last-child {
  margin-bottom: 0;
}

.philosophy .hl {
  color: var(--gold);
}

/* ═══ SERVICES LINK ═══ */
.services-link {
  text-align: center;
  margin-top: 1.5rem;
}

.services-link a {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--crimson);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.2s, color 0.2s;
}

.services-link a:hover {
  border-bottom-color: var(--crimson);
  color: var(--crimson-dark);
}

.card[data-service] {
  cursor: pointer;
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 700px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2rem 0;
    text-align: center;
  }

  .hero-right {
    text-align: center;
  }

  .hero-logo {
    width: 150px;
  }
}

@media (max-width: 560px) {
  .hero { padding: 1.5rem 0; }

  .hero-title { display: none; }
}
