/* Gestoría Ortiz & Rama — tarjeta de presentación */

:root {
  --negro: #242424;
  --ocre: #d2ad53;
}

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

html {
  height: 100%;
}

body {
  margin: 0;
  min-height: 100%;
  min-height: 100dvh;
  font-family: "Barlow", system-ui, sans-serif;
  font-weight: 400;
  color: var(--negro);
  background-color: #fff;
  background-image: url("../images/fondo.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
}

.hero {
  min-height: 100%;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(1.25rem, 5vw, 3rem);
  text-align: center;
}

.logo {
  display: block;
  width: min(72vw, 320px);
  height: auto;
  margin-bottom: clamp(1.75rem, 5vw, 2.75rem);
  object-fit: contain;
}

.sep {
  color: var(--ocre);
}

.tagline {
  margin: 0 0 clamp(2rem, 6vw, 3.25rem);
  max-width: 28rem;
  font-family: "Ubuntu", system-ui, sans-serif;
  font-size: clamp(1rem, 2.8vw, 1.25rem);
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0.02em;
  color: var(--negro);
}

.contact {
  margin: 0;
  max-width: 22rem;
  font-family: "Barlow", system-ui, sans-serif;
  font-size: clamp(0.95rem, 2.2vw, 1.1rem);
  font-style: normal;
  line-height: 1.85;
  color: var(--negro);
}

.contact a {
  color: var(--negro);
  text-decoration: none;
  border-bottom: 1px solid rgba(210, 173, 83, 0.55);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.contact a:hover,
.contact a:focus-visible {
  color: var(--ocre);
  border-bottom-color: var(--ocre);
  outline: none;
}

.contact a:focus-visible {
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--ocre);
}

.line {
  display: block;
}

.line + .line {
  margin-top: 0.35em;
}
